diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6a8bc10 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode +build \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..48eb293 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,50 @@ +dist: focal +sudo: required # используем Virtual Machine (а не Docker container) + +language: c + +os: + - linux + +compiler: + - gcc + +addons: + apt: + packages: + - cmake + - lcov + - gcovr + +install: + - sudo apt -y install python3-pip + - sudo apt-get install valgrind + - sudo pip3 install cpplint + - sudo apt update + - sudo apt install build-essential + - sudo apt install libgtest-dev + - sudo apt-get install cmake + - sudo apt-get install -y gcovr + - sudo apt install lcov + - sudo apt install cppcheck + - sudo apt install curl + +before_script: + - sudo apt-get install -y libgtest-dev + - cd /usr/src/gtest + - sudo cmake CMakeLists.txt && sudo make + - cd "${TRAVIS_BUILD_DIR}"/ + - sudo mkdir build + - sudo cd build + - sudo cmake .. + - sudo make clean + - sudo make + - cd .. + - cd .. + +script: + - cpplint --extensions=c,cpp src/main.c src/find_letters.c include/testy/find_letters.h test/main.cpp + - cppcheck --enable=warning,performance,portability,style --language=c++ ./ + - valgrind --track-origins=yes --child-silent-after-fork=yes --leak-check=full "${TRAVIS_BUILD_DIR}"/build/TEST + - cd "${TRAVIS_BUILD_DIR}"/src + - bash <(curl -s https://codecov.io/bash) \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..cd88d48 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "C_Cpp.errorSquiggles": "Disabled", + "files.associations": { + "find_letters.h": "c", + "stdio.h": "c", + "types.h": "c" + } +} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..75874f4 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,51 @@ +cmake_minimum_required(VERSION 3.16) +project(try C CXX) + +set(CMAKE_C_STANDARD 11) +set(CMAKE_CXX_STANDARD 17) + +set(CMAKE_C_FLAGS "-g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage") +set(CMAKE_CXX_FLAGS "-g -Wall -O3 -fprofile-arcs -ftest-coverage") + +find_package(GTest REQUIRED) +find_package(Threads REQUIRED) + + + +set(DIR ${CMAKE_CURRENT_SOURCE_DIR}) +add_definitions(-DSOURCE_DIR="${CMAKE_CURRENT_SOURCE_DIR}") + +set(INC_DIR ${DIR}/include/testy) + +set(SRC_DIR ${DIR}/src) + +set(TESTS_DIR ${DIR}/test) + +include_directories("${GTEST_INCLUDE_DIRS}") +include_directories(/include/testy) + +add_library(f_letter STATIC + ${INC_DIR}/find_letters.h + ${SRC_DIR}/find_letters.c) + +add_library(multi_compute_matrix MODULE + ${INC_DIR}/find_letters.h + ${SRC_DIR}/find_letters.c) + +add_executable(TEST + test/main.cpp) + +target_include_directories(TEST PUBLIC ${INC_DIR}) + +target_link_libraries(TEST ${GTEST_LIBRARIES} Threads::Threads pthread -ldl f_letter) + +enable_testing() + + + +add_executable(try + ${SRC_DIR}/main.c) + +target_link_libraries(try Threads::Threads pthread -ldl f_letter) + +target_include_directories(try PUBLIC ${INC_DIR}) diff --git a/CMakeLists.txt.in b/CMakeLists.txt.in new file mode 100644 index 0000000..d9f7850 --- /dev/null +++ b/CMakeLists.txt.in @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.1) + +project(googletest-download NONE) + +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}-pthread") + +include(ExternalProject) +ExternalProject_Add(googletest + GIT_REPOSITORY https://github.com/google/googletest.git + GIT_TAG release-1.8.1 + SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src" + BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" +) diff --git a/CPPLINT.cfg b/CPPLINT.cfg new file mode 100644 index 0000000..87e5f7a --- /dev/null +++ b/CPPLINT.cfg @@ -0,0 +1,6 @@ +headers=h +linelength=120 +filter=-runtime/int +filter=-legal/copyright +filter=-build/include_subdir +filter=-build/include \ No newline at end of file diff --git a/README.rst b/README.rst index 55b11e0..0271791 100644 --- a/README.rst +++ b/README.rst @@ -1,14 +1,11 @@ .. image:: https://travis-ci.com/Golem24434/IZ2.svg?branch=other - :target: https://travis-ci.com/Golem24434/IZ2 -.. image:: https://codecov.io/gh/Golem24434/IZ2/branch/other/graph/badge.svg?token=A9Q0DV7S7K - :target: https://codecov.io/gh/Golem24434/IZ2 + :target: https://travis-ci.com/Golem24434/IZ2CD Второе индивидуальное задание по курсу "Углубленное программирование на C/C++ ----------------------------------------------------------------------------- -Вариант #12 -В вашем распоряжении — квадратная матрица из 10 000 x 10 000 чисел. Составьте наивный алгоритм подсчета сумм диагональных элементов матрицы (для каждой диагонали), а затем реализуйте параллельный алгоритм с использованием нескольких процессов с учетом оптимизации работы с кэш-памятью. - +Вариант #35 +В вашем распоряжении – данные о письмах пользователей (отправитель, список получателей, тема, тело письма, дата отправки). Суммарное количество пользователей – 10к, писем – 1 млн. Реализуйте последовательный и параллельный алгоритм поиска с использованием нескольких процессов тем всех писем, которые были получены пользователем в определённый временной промежуток, отсортированных по дате. На что необходимо обратить внимание: - основная информация описана в https://park.mail.ru/blog/topic/view/14270/ - параллельная реализация не должна быть осуществлена с помощью процессов, когда требуется реализация с помощью потоков (и наоборот); diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..1cd1b07 --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,403 @@ +# This is the CMakeCache file. +# For build in directory: /home/omar/IZ2/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//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-9 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9 + +//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-9 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=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=try + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/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 + +//Path to a file. +GTEST_INCLUDE_DIR:PATH=/usr/include + +//Path to a library. +GTEST_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libgtest.a + +//Path to a library. +GTEST_LIBRARY_DEBUG:FILEPATH=GTEST_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +GTEST_MAIN_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libgtest_main.a + +//Path to a library. +GTEST_MAIN_LIBRARY_DEBUG:FILEPATH=GTEST_MAIN_LIBRARY_DEBUG-NOTFOUND + +//Value Computed by CMake +try_BINARY_DIR:STATIC=/home/omar/IZ2/build + +//Value Computed by CMake +try_SOURCE_DIR:STATIC=/home/omar/IZ2 + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/omar/IZ2/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=16 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//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 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL= +//Have library pthreads +CMAKE_HAVE_PTHREADS_CREATE:INTERNAL= +//Have library pthread +CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1 +//Have include pthread.h +CMAKE_HAVE_PTHREAD_H:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/omar/IZ2 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.16 +//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 +//Details about finding GTest +FIND_PACKAGE_MESSAGE_DETAILS_GTest:INTERNAL=[/usr/lib/x86_64-linux-gnu/libgtest.a][/usr/include][/usr/lib/x86_64-linux-gnu/libgtest_main.a][v()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: GTEST_INCLUDE_DIR +GTEST_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_LIBRARY +GTEST_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_LIBRARY_DEBUG +GTEST_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_MAIN_LIBRARY +GTEST_MAIN_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GTEST_MAIN_LIBRARY_DEBUG +GTEST_MAIN_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 + diff --git a/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake b/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..2692f73 --- /dev/null +++ b/build/CMakeFiles/3.16.3/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.3.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-9") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9") +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 "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/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-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..504c250 --- /dev/null +++ b/build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake @@ -0,0 +1,88 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "9.3.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-9") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9") +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_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/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-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..a3225b1 Binary files /dev/null and b/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..89f7882 Binary files /dev/null and b/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.16.3/CMakeSystem.cmake b/build/CMakeFiles/3.16.3/CMakeSystem.cmake new file mode 100644 index 0000000..116b79c --- /dev/null +++ b/build/CMakeFiles/3.16.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.11.0-38-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.11.0-38-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.11.0-38-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.11.0-38-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..d884b50 --- /dev/null +++ b/build/CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,671 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if (defined(_MSC_VER) && !defined(__clang__)) \ + || (defined(__ibmxl__) || defined(__IBMC__)) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/3.16.3/CompilerIdC/a.out b/build/CMakeFiles/3.16.3/CompilerIdC/a.out new file mode 100755 index 0000000..46f1233 Binary files /dev/null and b/build/CMakeFiles/3.16.3/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..69cfdba --- /dev/null +++ b/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,660 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out b/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out new file mode 100755 index 0000000..c868426 Binary files /dev/null and b/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..ee81687 --- /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.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/omar/IZ2") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/omar/IZ2/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeError.log b/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000..a97893a --- /dev/null +++ b/build/CMakeFiles/CMakeError.log @@ -0,0 +1,98 @@ +Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: +Change Dir: /home/omar/try/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_d2a15/fast && /usr/bin/make -f CMakeFiles/cmTC_d2a15.dir/build.make CMakeFiles/cmTC_d2a15.dir/build +make[1]: вход в каталог «/home/omar/try/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_d2a15.dir/src.c.o +/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_d2a15.dir/src.c.o -c /home/omar/try/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_d2a15 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d2a15.dir/link.txt --verbose=1 +/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -rdynamic CMakeFiles/cmTC_d2a15.dir/src.c.o -o cmTC_d2a15 +/usr/bin/ld: CMakeFiles/cmTC_d2a15.dir/src.c.o: в функции «main»: +src.c:(.text+0x46): неопределённая ссылка на «pthread_create» +/usr/bin/ld: src.c:(.text+0x52): неопределённая ссылка на «pthread_detach» +/usr/bin/ld: src.c:(.text+0x63): неопределённая ссылка на «pthread_join» +collect2: error: ld returned 1 exit status +make[1]: *** [CMakeFiles/cmTC_d2a15.dir/build.make:87: cmTC_d2a15] Ошибка 1 +make[1]: выход из каталога «/home/omar/try/build/CMakeFiles/CMakeTmp» +make: *** [Makefile:121: cmTC_d2a15/fast] Ошибка 2 + + +Source file was: +#include + +void* test_func(void* data) +{ + return data; +} + +int main(void) +{ + pthread_t thread; + pthread_create(&thread, NULL, test_func, NULL); + pthread_detach(thread); + pthread_join(thread, NULL); + pthread_atfork(NULL, NULL, NULL); + pthread_exit(NULL); + + return 0; +} + +Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_c5ffb/fast && /usr/bin/make -f CMakeFiles/cmTC_c5ffb.dir/build.make CMakeFiles/cmTC_c5ffb.dir/build +make[1]: вход в каталог «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_c5ffb.dir/src.c.o +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu11 -o CMakeFiles/cmTC_c5ffb.dir/src.c.o -c /home/omar/IZ2/build/CMakeFiles/CMakeTmp/src.c +Linking C executable cmTC_c5ffb +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5ffb.dir/link.txt --verbose=1 +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_c5ffb.dir/src.c.o -o cmTC_c5ffb +/usr/bin/ld: CMakeFiles/cmTC_c5ffb.dir/src.c.o: в функции «main»: +/home/omar/IZ2/build/CMakeFiles/CMakeTmp/src.c:11: неопределённая ссылка на «pthread_create» +/usr/bin/ld: /home/omar/IZ2/build/CMakeFiles/CMakeTmp/src.c:12: неопределённая ссылка на «pthread_detach» +/usr/bin/ld: /home/omar/IZ2/build/CMakeFiles/CMakeTmp/src.c:13: неопределённая ссылка на «pthread_join» +collect2: error: ld returned 1 exit status +make[1]: *** [CMakeFiles/cmTC_c5ffb.dir/build.make:87: cmTC_c5ffb] Ошибка 1 +make[1]: выход из каталога «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +make: *** [Makefile:121: cmTC_c5ffb/fast] Ошибка 2 + + +Source file was: +#include + +void* test_func(void* data) +{ + return data; +} + +int main(void) +{ + pthread_t thread; + pthread_create(&thread, NULL, test_func, NULL); + pthread_detach(thread); + pthread_join(thread, NULL); + pthread_atfork(NULL, NULL, NULL); + pthread_exit(NULL); + + return 0; +} + +Determining if the function pthread_create exists in the pthreads failed with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_44a02/fast && /usr/bin/make -f CMakeFiles/cmTC_44a02.dir/build.make CMakeFiles/cmTC_44a02.dir/build +make[1]: вход в каталог «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_44a02.dir/CheckFunctionExists.c.o +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -DCHECK_FUNCTION_EXISTS=pthread_create -std=gnu11 -o CMakeFiles/cmTC_44a02.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_44a02 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_44a02.dir/link.txt --verbose=1 +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_44a02.dir/CheckFunctionExists.c.o -o cmTC_44a02 -lpthreads +/usr/bin/ld: невозможно найти -lpthreads +collect2: error: ld returned 1 exit status +make[1]: *** [CMakeFiles/cmTC_44a02.dir/build.make:87: cmTC_44a02] Ошибка 1 +make[1]: выход из каталога «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +make: *** [Makefile:121: cmTC_44a02/fast] Ошибка 2 + + + diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..da22542 --- /dev/null +++ b/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,966 @@ +The system is: Linux - 5.11.0-38-generic - 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/omar/try/build/CMakeFiles/3.16.3/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/omar/try/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/omar/try/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_cbfe5/fast && /usr/bin/make -f CMakeFiles/cmTC_cbfe5.dir/build.make CMakeFiles/cmTC_cbfe5.dir/build +make[1]: вход в каталог «/home/omar/try/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_cbfe5.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_cbfe5.dir/testCCompiler.c.o -c /home/omar/try/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_cbfe5 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cbfe5.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_cbfe5.dir/testCCompiler.c.o -o cmTC_cbfe5 +make[1]: выход из каталога «/home/omar/try/build/CMakeFiles/CMakeTmp» + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/omar/try/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_e95c1/fast && /usr/bin/make -f CMakeFiles/cmTC_e95c1.dir/build.make CMakeFiles/cmTC_e95c1.dir/build +make[1]: Entering directory '/home/omar/try/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc7VffK7.s +GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/9/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: bbf13931d8de1abe14040c9909cb6969 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o /tmp/cc7VffK7.s +GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' +Linking C executable cmTC_e95c1 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e95c1.dir/link.txt --verbose=1 +/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -o cmTC_e95c1 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_e95c1' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTQwRDy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e95c1 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_e95c1' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/omar/try/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-linux-gnu/9/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/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/omar/try/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_e95c1/fast && /usr/bin/make -f CMakeFiles/cmTC_e95c1.dir/build.make CMakeFiles/cmTC_e95c1.dir/build] + ignore line: [make[1]: Entering directory '/home/omar/try/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc7VffK7.s] + ignore line: [GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: bbf13931d8de1abe14040c9909cb6969] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o /tmp/cc7VffK7.s] + ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking C executable cmTC_e95c1] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e95c1.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v -rdynamic CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -o cmTC_e95c1 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_e95c1' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTQwRDy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_e95c1 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_e95c1.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccTQwRDy.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_e95c1] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] + arg [CMakeFiles/cmTC_e95c1.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-linux-gnu/9/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/omar/try/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_be969/fast && /usr/bin/make -f CMakeFiles/cmTC_be969.dir/build.make CMakeFiles/cmTC_be969.dir/build +make[1]: вход в каталог «/home/omar/try/build/CMakeFiles/CMakeTmp» +Building CXX object CMakeFiles/cmTC_be969.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_be969.dir/testCXXCompiler.cxx.o -c /home/omar/try/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_be969 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_be969.dir/link.txt --verbose=1 +/usr/bin/c++ -rdynamic CMakeFiles/cmTC_be969.dir/testCXXCompiler.cxx.o -o cmTC_be969 +make[1]: выход из каталога «/home/omar/try/build/CMakeFiles/CMakeTmp» + + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/omar/try/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_a8cd9/fast && /usr/bin/make -f CMakeFiles/cmTC_a8cd9.dir/build.make CMakeFiles/cmTC_a8cd9.dir/build +make[1]: Entering directory '/home/omar/try/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccMSCvn2.s +GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9" +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/9 + /usr/include/x86_64-linux-gnu/c++/9 + /usr/include/c++/9/backward + /usr/lib/gcc/x86_64-linux-gnu/9/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 466f818abe2f30ba03783f22bd12d815 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccMSCvn2.s +GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +Linking CXX executable cmTC_a8cd9 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a8cd9.dir/link.txt --verbose=1 +/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a8cd9 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_a8cd9' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDOWQfx.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a8cd9 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_a8cd9' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/omar/try/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/include/c++/9] + add: [/usr/include/x86_64-linux-gnu/c++/9] + add: [/usr/include/c++/9/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/9/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/9] ==> [/usr/include/c++/9] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/9] ==> [/usr/include/x86_64-linux-gnu/c++/9] + collapse include dir [/usr/include/c++/9/backward] ==> [/usr/include/c++/9/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/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/omar/try/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_a8cd9/fast && /usr/bin/make -f CMakeFiles/cmTC_a8cd9.dir/build.make CMakeFiles/cmTC_a8cd9.dir/build] + ignore line: [make[1]: Entering directory '/home/omar/try/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccMSCvn2.s] + ignore line: [GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/9] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/9] + ignore line: [ /usr/include/c++/9/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 466f818abe2f30ba03783f22bd12d815] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccMSCvn2.s] + ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking CXX executable cmTC_a8cd9] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a8cd9.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v -rdynamic CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a8cd9 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_a8cd9' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccDOWQfx.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a8cd9 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_a8cd9.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccDOWQfx.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_a8cd9] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] + arg [CMakeFiles/cmTC_a8cd9.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-linux-gnu/9/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Determining if the include file pthread.h exists passed with the following output: +Change Dir: /home/omar/try/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_bac79/fast && /usr/bin/make -f CMakeFiles/cmTC_bac79.dir/build.make CMakeFiles/cmTC_bac79.dir/build +make[1]: вход в каталог «/home/omar/try/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_bac79.dir/CheckIncludeFile.c.o +/usr/bin/cc -o CMakeFiles/cmTC_bac79.dir/CheckIncludeFile.c.o -c /home/omar/try/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_bac79 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bac79.dir/link.txt --verbose=1 +/usr/bin/cc -rdynamic CMakeFiles/cmTC_bac79.dir/CheckIncludeFile.c.o -o cmTC_bac79 +make[1]: выход из каталога «/home/omar/try/build/CMakeFiles/CMakeTmp» + + + +The system is: Linux - 5.11.0-38-generic - 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/omar/IZ2/build/CMakeFiles/3.16.3/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/omar/IZ2/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_a3da0/fast && /usr/bin/make -f CMakeFiles/cmTC_a3da0.dir/build.make CMakeFiles/cmTC_a3da0.dir/build +make[1]: вход в каталог «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_a3da0.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_a3da0.dir/testCCompiler.c.o -c /home/omar/IZ2/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_a3da0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3da0.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_a3da0.dir/testCCompiler.c.o -o cmTC_a3da0 +make[1]: выход из каталога «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_2a713/fast && /usr/bin/make -f CMakeFiles/cmTC_2a713.dir/build.make CMakeFiles/cmTC_2a713.dir/build +make[1]: Entering directory '/home/omar/IZ2/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccouOYiR.s +GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/9/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: bbf13931d8de1abe14040c9909cb6969 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o /tmp/ccouOYiR.s +GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' +Linking C executable cmTC_2a713 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2a713.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -o cmTC_2a713 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2a713' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxz94ml.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_2a713 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2a713' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/omar/IZ2/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-linux-gnu/9/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/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/omar/IZ2/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_2a713/fast && /usr/bin/make -f CMakeFiles/cmTC_2a713.dir/build.make CMakeFiles/cmTC_2a713.dir/build] + ignore line: [make[1]: Entering directory '/home/omar/IZ2/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccouOYiR.s] + ignore line: [GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: bbf13931d8de1abe14040c9909cb6969] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o /tmp/ccouOYiR.s] + ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking C executable cmTC_2a713] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2a713.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -o cmTC_2a713 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2a713' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccxz94ml.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_2a713 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_2a713.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccxz94ml.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_2a713] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] + arg [CMakeFiles/cmTC_2a713.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-linux-gnu/9/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_fd865/fast && /usr/bin/make -f CMakeFiles/cmTC_fd865.dir/build.make CMakeFiles/cmTC_fd865.dir/build +make[1]: вход в каталог «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +Building CXX object CMakeFiles/cmTC_fd865.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_fd865.dir/testCXXCompiler.cxx.o -c /home/omar/IZ2/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_fd865 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd865.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_fd865.dir/testCXXCompiler.cxx.o -o cmTC_fd865 +make[1]: выход из каталога «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» + + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_17a4f/fast && /usr/bin/make -f CMakeFiles/cmTC_17a4f.dir/build.make CMakeFiles/cmTC_17a4f.dir/build +make[1]: Entering directory '/home/omar/IZ2/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccjSqJUO.s +GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9" +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/9 + /usr/include/x86_64-linux-gnu/c++/9 + /usr/include/c++/9/backward + /usr/lib/gcc/x86_64-linux-gnu/9/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu) + compiled by GNU C version 9.3.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 466f818abe2f30ba03783f22bd12d815 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjSqJUO.s +GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +Linking CXX executable cmTC_17a4f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_17a4f.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_17a4f +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none:hsa +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_17a4f' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7D5aai.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_17a4f /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_17a4f' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/omar/IZ2/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/include/c++/9] + add: [/usr/include/x86_64-linux-gnu/c++/9] + add: [/usr/include/c++/9/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/9/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/9] ==> [/usr/include/c++/9] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/9] ==> [/usr/include/x86_64-linux-gnu/c++/9] + collapse include dir [/usr/include/c++/9/backward] ==> [/usr/include/c++/9/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/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/omar/IZ2/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_17a4f/fast && /usr/bin/make -f CMakeFiles/cmTC_17a4f.dir/build.make CMakeFiles/cmTC_17a4f.dir/build] + ignore line: [make[1]: Entering directory '/home/omar/IZ2/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccjSqJUO.s] + ignore line: [GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/9] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/9] + ignore line: [ /usr/include/c++/9/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 9.3.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 466f818abe2f30ba03783f22bd12d815] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjSqJUO.s] + ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking CXX executable cmTC_17a4f] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_17a4f.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_17a4f ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_17a4f' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7D5aai.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_17a4f /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_17a4f.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc7D5aai.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 [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_17a4f] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] + arg [CMakeFiles/cmTC_17a4f.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-linux-gnu/9/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Determining if the include file pthread.h exists passed with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_9e9a7/fast && /usr/bin/make -f CMakeFiles/cmTC_9e9a7.dir/build.make CMakeFiles/cmTC_9e9a7.dir/build +make[1]: вход в каталог «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_9e9a7.dir/CheckIncludeFile.c.o +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -std=gnu11 -o CMakeFiles/cmTC_9e9a7.dir/CheckIncludeFile.c.o -c /home/omar/IZ2/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c +Linking C executable cmTC_9e9a7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9e9a7.dir/link.txt --verbose=1 +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage CMakeFiles/cmTC_9e9a7.dir/CheckIncludeFile.c.o -o cmTC_9e9a7 +make[1]: выход из каталога «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» + + + +Determining if the function pthread_create exists in the pthread passed with the following output: +Change Dir: /home/omar/IZ2/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_a02aa/fast && /usr/bin/make -f CMakeFiles/cmTC_a02aa.dir/build.make CMakeFiles/cmTC_a02aa.dir/build +make[1]: вход в каталог «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» +Building C object CMakeFiles/cmTC_a02aa.dir/CheckFunctionExists.c.o +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -DCHECK_FUNCTION_EXISTS=pthread_create -std=gnu11 -o CMakeFiles/cmTC_a02aa.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c +Linking C executable cmTC_a02aa +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a02aa.dir/link.txt --verbose=1 +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_a02aa.dir/CheckFunctionExists.c.o -o cmTC_a02aa -lpthread +make[1]: выход из каталога «/home/omar/IZ2/build/CMakeFiles/CMakeTmp» + + + diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..df338b4 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,60 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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.16.3/CMakeCCompiler.cmake" + "CMakeFiles/3.16.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.16.3/CMakeSystem.cmake" + "/usr/share/cmake-3.16/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/share/cmake-3.16/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.16/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.16/Modules/CheckCSourceCompiles.cmake" + "/usr/share/cmake-3.16/Modules/CheckIncludeFile.cmake" + "/usr/share/cmake-3.16/Modules/CheckLibraryExists.cmake" + "/usr/share/cmake-3.16/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.16/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.16/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.16/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.16/Modules/FindGTest.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.16/Modules/FindThreads.cmake" + "/usr/share/cmake-3.16/Modules/GoogleTest.cmake" + "/usr/share/cmake-3.16/Modules/Internal/CMakeCheckCompilerFlag.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.16/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/try.dir/DependInfo.cmake" + "CMakeFiles/TEST.dir/DependInfo.cmake" + "CMakeFiles/multi_compute_matrix.dir/DependInfo.cmake" + "CMakeFiles/f_letter.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..e4b936c --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,193 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/IZ2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/IZ2/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/try.dir/all +all: CMakeFiles/TEST.dir/all +all: CMakeFiles/multi_compute_matrix.dir/all +all: CMakeFiles/f_letter.dir/all + +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: + +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/try.dir/clean +clean: CMakeFiles/TEST.dir/clean +clean: CMakeFiles/multi_compute_matrix.dir/clean +clean: CMakeFiles/f_letter.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/try.dir + +# All Build rule for target. +CMakeFiles/try.dir/all: CMakeFiles/f_letter.dir/all + $(MAKE) -f CMakeFiles/try.dir/build.make CMakeFiles/try.dir/depend + $(MAKE) -f CMakeFiles/try.dir/build.make CMakeFiles/try.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=7,8 "Built target try" +.PHONY : CMakeFiles/try.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/try.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 4 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/try.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 0 +.PHONY : CMakeFiles/try.dir/rule + +# Convenience name for target. +try: CMakeFiles/try.dir/rule + +.PHONY : try + +# clean rule for target. +CMakeFiles/try.dir/clean: + $(MAKE) -f CMakeFiles/try.dir/build.make CMakeFiles/try.dir/clean +.PHONY : CMakeFiles/try.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/TEST.dir + +# All Build rule for target. +CMakeFiles/TEST.dir/all: CMakeFiles/f_letter.dir/all + $(MAKE) -f CMakeFiles/TEST.dir/build.make CMakeFiles/TEST.dir/depend + $(MAKE) -f CMakeFiles/TEST.dir/build.make CMakeFiles/TEST.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=1,2 "Built target TEST" +.PHONY : CMakeFiles/TEST.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/TEST.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 4 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/TEST.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 0 +.PHONY : CMakeFiles/TEST.dir/rule + +# Convenience name for target. +TEST: CMakeFiles/TEST.dir/rule + +.PHONY : TEST + +# clean rule for target. +CMakeFiles/TEST.dir/clean: + $(MAKE) -f CMakeFiles/TEST.dir/build.make CMakeFiles/TEST.dir/clean +.PHONY : CMakeFiles/TEST.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/multi_compute_matrix.dir + +# All Build rule for target. +CMakeFiles/multi_compute_matrix.dir/all: + $(MAKE) -f CMakeFiles/multi_compute_matrix.dir/build.make CMakeFiles/multi_compute_matrix.dir/depend + $(MAKE) -f CMakeFiles/multi_compute_matrix.dir/build.make CMakeFiles/multi_compute_matrix.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=5,6 "Built target multi_compute_matrix" +.PHONY : CMakeFiles/multi_compute_matrix.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/multi_compute_matrix.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/multi_compute_matrix.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 0 +.PHONY : CMakeFiles/multi_compute_matrix.dir/rule + +# Convenience name for target. +multi_compute_matrix: CMakeFiles/multi_compute_matrix.dir/rule + +.PHONY : multi_compute_matrix + +# clean rule for target. +CMakeFiles/multi_compute_matrix.dir/clean: + $(MAKE) -f CMakeFiles/multi_compute_matrix.dir/build.make CMakeFiles/multi_compute_matrix.dir/clean +.PHONY : CMakeFiles/multi_compute_matrix.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/f_letter.dir + +# All Build rule for target. +CMakeFiles/f_letter.dir/all: + $(MAKE) -f CMakeFiles/f_letter.dir/build.make CMakeFiles/f_letter.dir/depend + $(MAKE) -f CMakeFiles/f_letter.dir/build.make CMakeFiles/f_letter.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=3,4 "Built target f_letter" +.PHONY : CMakeFiles/f_letter.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/f_letter.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/f_letter.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 0 +.PHONY : CMakeFiles/f_letter.dir/rule + +# Convenience name for target. +f_letter: CMakeFiles/f_letter.dir/rule + +.PHONY : f_letter + +# clean rule for target. +CMakeFiles/f_letter.dir/clean: + $(MAKE) -f CMakeFiles/f_letter.dir/build.make CMakeFiles/f_letter.dir/clean +.PHONY : CMakeFiles/f_letter.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/TEST.dir/CXX.includecache b/build/CMakeFiles/TEST.dir/CXX.includecache new file mode 100644 index 0000000..e203db0 --- /dev/null +++ b/build/CMakeFiles/TEST.dir/CXX.includecache @@ -0,0 +1,36 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/IZ2/include/testy/find_letters.h +stdio.h +- +stdlib.h +- +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- +time.h +- +dlfcn.h +- + +/home/omar/IZ2/test/main.cpp +gtest/gtest.h +/home/omar/IZ2/test/gtest/gtest.h +../include/testy/find_letters.h +/home/omar/IZ2/include/testy/find_letters.h + diff --git a/build/CMakeFiles/TEST.dir/DependInfo.cmake b/build/CMakeFiles/TEST.dir/DependInfo.cmake new file mode 100644 index 0000000..b9f8809 --- /dev/null +++ b/build/CMakeFiles/TEST.dir/DependInfo.cmake @@ -0,0 +1,28 @@ +# 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/omar/IZ2/test/main.cpp" "/home/omar/IZ2/build/CMakeFiles/TEST.dir/test/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "SOURCE_DIR=\"/home/omar/IZ2\"" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/include/testy" + "../include/testy" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/omar/IZ2/build/CMakeFiles/f_letter.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/TEST.dir/build.make b/build/CMakeFiles/TEST.dir/build.make new file mode 100644 index 0000000..97505d0 --- /dev/null +++ b/build/CMakeFiles/TEST.dir/build.make @@ -0,0 +1,100 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/IZ2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/IZ2/build + +# Include any dependencies generated for this target. +include CMakeFiles/TEST.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/TEST.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/TEST.dir/flags.make + +CMakeFiles/TEST.dir/test/main.cpp.o: CMakeFiles/TEST.dir/flags.make +CMakeFiles/TEST.dir/test/main.cpp.o: ../test/main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/TEST.dir/test/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/TEST.dir/test/main.cpp.o -c /home/omar/IZ2/test/main.cpp + +CMakeFiles/TEST.dir/test/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/TEST.dir/test/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/IZ2/test/main.cpp > CMakeFiles/TEST.dir/test/main.cpp.i + +CMakeFiles/TEST.dir/test/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/TEST.dir/test/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/IZ2/test/main.cpp -o CMakeFiles/TEST.dir/test/main.cpp.s + +# Object files for target TEST +TEST_OBJECTS = \ +"CMakeFiles/TEST.dir/test/main.cpp.o" + +# External object files for target TEST +TEST_EXTERNAL_OBJECTS = + +TEST: CMakeFiles/TEST.dir/test/main.cpp.o +TEST: CMakeFiles/TEST.dir/build.make +TEST: /usr/lib/x86_64-linux-gnu/libgtest.a +TEST: libf_letter.a +TEST: CMakeFiles/TEST.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable TEST" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/TEST.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/TEST.dir/build: TEST + +.PHONY : CMakeFiles/TEST.dir/build + +CMakeFiles/TEST.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/TEST.dir/cmake_clean.cmake +.PHONY : CMakeFiles/TEST.dir/clean + +CMakeFiles/TEST.dir/depend: + cd /home/omar/IZ2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/IZ2 /home/omar/IZ2 /home/omar/IZ2/build /home/omar/IZ2/build /home/omar/IZ2/build/CMakeFiles/TEST.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/TEST.dir/depend + diff --git a/build/CMakeFiles/TEST.dir/cmake_clean.cmake b/build/CMakeFiles/TEST.dir/cmake_clean.cmake new file mode 100644 index 0000000..0f4d4ec --- /dev/null +++ b/build/CMakeFiles/TEST.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/TEST.dir/test/main.cpp.o" + "TEST" + "TEST.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/TEST.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/TEST.dir/depend.internal b/build/CMakeFiles/TEST.dir/depend.internal new file mode 100644 index 0000000..453a535 --- /dev/null +++ b/build/CMakeFiles/TEST.dir/depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/TEST.dir/test/main.cpp.o + /home/omar/IZ2/include/testy/find_letters.h + /home/omar/IZ2/test/main.cpp diff --git a/build/CMakeFiles/TEST.dir/depend.make b/build/CMakeFiles/TEST.dir/depend.make new file mode 100644 index 0000000..e25a205 --- /dev/null +++ b/build/CMakeFiles/TEST.dir/depend.make @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/TEST.dir/test/main.cpp.o: ../include/testy/find_letters.h +CMakeFiles/TEST.dir/test/main.cpp.o: ../test/main.cpp + diff --git a/build/CMakeFiles/TEST.dir/flags.make b/build/CMakeFiles/TEST.dir/flags.make new file mode 100644 index 0000000..1ea0fef --- /dev/null +++ b/build/CMakeFiles/TEST.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -g -Wall -O3 -fprofile-arcs -ftest-coverage -std=gnu++17 + +CXX_DEFINES = -DSOURCE_DIR=\"/home/omar/IZ2\" + +CXX_INCLUDES = -I/include/testy -I/home/omar/IZ2/include/testy + diff --git a/build/CMakeFiles/TEST.dir/link.txt b/build/CMakeFiles/TEST.dir/link.txt new file mode 100644 index 0000000..7bdc782 --- /dev/null +++ b/build/CMakeFiles/TEST.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -g -Wall -O3 -fprofile-arcs -ftest-coverage CMakeFiles/TEST.dir/test/main.cpp.o -o TEST /usr/lib/x86_64-linux-gnu/libgtest.a -lpthread -ldl libf_letter.a -lpthread diff --git a/build/CMakeFiles/TEST.dir/progress.make b/build/CMakeFiles/TEST.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/build/CMakeFiles/TEST.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/build/CMakeFiles/TEST.dir/test/main.cpp.gcda b/build/CMakeFiles/TEST.dir/test/main.cpp.gcda new file mode 100644 index 0000000..b2177d1 Binary files /dev/null and b/build/CMakeFiles/TEST.dir/test/main.cpp.gcda differ diff --git a/build/CMakeFiles/TEST.dir/test/main.cpp.gcno b/build/CMakeFiles/TEST.dir/test/main.cpp.gcno new file mode 100644 index 0000000..512c5a9 Binary files /dev/null and b/build/CMakeFiles/TEST.dir/test/main.cpp.gcno differ diff --git a/build/CMakeFiles/TEST.dir/test/main.cpp.o b/build/CMakeFiles/TEST.dir/test/main.cpp.o new file mode 100644 index 0000000..f07282f Binary files /dev/null and b/build/CMakeFiles/TEST.dir/test/main.cpp.o differ diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..186b22d --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,7 @@ +/home/omar/IZ2/build/CMakeFiles/rebuild_cache.dir +/home/omar/IZ2/build/CMakeFiles/edit_cache.dir +/home/omar/IZ2/build/CMakeFiles/test.dir +/home/omar/IZ2/build/CMakeFiles/try.dir +/home/omar/IZ2/build/CMakeFiles/TEST.dir +/home/omar/IZ2/build/CMakeFiles/multi_compute_matrix.dir +/home/omar/IZ2/build/CMakeFiles/f_letter.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/compute_matrix.dir/C.includecache b/build/CMakeFiles/compute_matrix.dir/C.includecache new file mode 100644 index 0000000..8df7c8e --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/C.includecache @@ -0,0 +1,34 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/try/include/testy/find_letters.h +stdio.h +- +stdlib.h +- +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- +time.h +- +dlfcn.h +- + +/home/omar/try/src/find_letters.c +../include/testy/find_letters.h +/home/omar/try/include/testy/find_letters.h + diff --git a/build/CMakeFiles/compute_matrix.dir/DependInfo.cmake b/build/CMakeFiles/compute_matrix.dir/DependInfo.cmake new file mode 100644 index 0000000..551fc35 --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/DependInfo.cmake @@ -0,0 +1,26 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/omar/try/src/find_letters.c" "/home/omar/try/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "SOURCE_DIR=\"/home/omar/try\"" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "/include/testy" + ) + +# 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/compute_matrix.dir/build.make b/build/CMakeFiles/compute_matrix.dir/build.make new file mode 100644 index 0000000..7c2625f --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +# Include any dependencies generated for this target. +include CMakeFiles/compute_matrix.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/compute_matrix.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/compute_matrix.dir/flags.make + +CMakeFiles/compute_matrix.dir/src/find_letters.c.o: CMakeFiles/compute_matrix.dir/flags.make +CMakeFiles/compute_matrix.dir/src/find_letters.c.o: ../src/find_letters.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/compute_matrix.dir/src/find_letters.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/compute_matrix.dir/src/find_letters.c.o -c /home/omar/try/src/find_letters.c + +CMakeFiles/compute_matrix.dir/src/find_letters.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/compute_matrix.dir/src/find_letters.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/omar/try/src/find_letters.c > CMakeFiles/compute_matrix.dir/src/find_letters.c.i + +CMakeFiles/compute_matrix.dir/src/find_letters.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/compute_matrix.dir/src/find_letters.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/omar/try/src/find_letters.c -o CMakeFiles/compute_matrix.dir/src/find_letters.c.s + +# Object files for target compute_matrix +compute_matrix_OBJECTS = \ +"CMakeFiles/compute_matrix.dir/src/find_letters.c.o" + +# External object files for target compute_matrix +compute_matrix_EXTERNAL_OBJECTS = + +libcompute_matrix.a: CMakeFiles/compute_matrix.dir/src/find_letters.c.o +libcompute_matrix.a: CMakeFiles/compute_matrix.dir/build.make +libcompute_matrix.a: CMakeFiles/compute_matrix.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libcompute_matrix.a" + $(CMAKE_COMMAND) -P CMakeFiles/compute_matrix.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/compute_matrix.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/compute_matrix.dir/build: libcompute_matrix.a + +.PHONY : CMakeFiles/compute_matrix.dir/build + +CMakeFiles/compute_matrix.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/compute_matrix.dir/cmake_clean.cmake +.PHONY : CMakeFiles/compute_matrix.dir/clean + +CMakeFiles/compute_matrix.dir/depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try /home/omar/try /home/omar/try/build /home/omar/try/build /home/omar/try/build/CMakeFiles/compute_matrix.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/compute_matrix.dir/depend + diff --git a/build/CMakeFiles/compute_matrix.dir/cmake_clean.cmake b/build/CMakeFiles/compute_matrix.dir/cmake_clean.cmake new file mode 100644 index 0000000..74c00ab --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/compute_matrix.dir/src/find_letters.c.o" + "libcompute_matrix.a" + "libcompute_matrix.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/compute_matrix.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/compute_matrix.dir/cmake_clean_target.cmake b/build/CMakeFiles/compute_matrix.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..c42c1dd --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libcompute_matrix.a" +) diff --git a/build/CMakeFiles/compute_matrix.dir/depend.internal b/build/CMakeFiles/compute_matrix.dir/depend.internal new file mode 100644 index 0000000..13f13fb --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/compute_matrix.dir/src/find_letters.c.o + /home/omar/try/include/testy/find_letters.h + /home/omar/try/src/find_letters.c diff --git a/build/CMakeFiles/compute_matrix.dir/depend.make b/build/CMakeFiles/compute_matrix.dir/depend.make new file mode 100644 index 0000000..505d6e3 --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/depend.make @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/compute_matrix.dir/src/find_letters.c.o: ../include/testy/find_letters.h +CMakeFiles/compute_matrix.dir/src/find_letters.c.o: ../src/find_letters.c + diff --git a/build/CMakeFiles/compute_matrix.dir/flags.make b/build/CMakeFiles/compute_matrix.dir/flags.make new file mode 100644 index 0000000..9536d9a --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -std=gnu11 + +C_DEFINES = -DSOURCE_DIR=\"/home/omar/try\" + +C_INCLUDES = -I/include/testy + diff --git a/build/CMakeFiles/compute_matrix.dir/link.txt b/build/CMakeFiles/compute_matrix.dir/link.txt new file mode 100644 index 0000000..44d4d81 --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libcompute_matrix.a CMakeFiles/compute_matrix.dir/src/find_letters.c.o +/usr/bin/ranlib libcompute_matrix.a diff --git a/build/CMakeFiles/compute_matrix.dir/progress.make b/build/CMakeFiles/compute_matrix.dir/progress.make new file mode 100644 index 0000000..8c8fb6f --- /dev/null +++ b/build/CMakeFiles/compute_matrix.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 3 +CMAKE_PROGRESS_2 = 4 + diff --git a/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.gcda b/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.gcda new file mode 100644 index 0000000..5d71adb Binary files /dev/null and b/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.gcda differ diff --git a/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.gcno b/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.gcno new file mode 100644 index 0000000..b16d5d8 Binary files /dev/null and b/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.gcno differ diff --git a/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.o b/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.o new file mode 100644 index 0000000..bd3cbd8 Binary files /dev/null and b/build/CMakeFiles/compute_matrix.dir/src/find_letters.c.o differ diff --git a/build/CMakeFiles/f_letter.dir/C.includecache b/build/CMakeFiles/f_letter.dir/C.includecache new file mode 100644 index 0000000..ce24dc3 --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/C.includecache @@ -0,0 +1,34 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/IZ2/include/testy/find_letters.h +stdio.h +- +stdlib.h +- +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- +time.h +- +dlfcn.h +- + +/home/omar/IZ2/src/find_letters.c +../include/testy/find_letters.h +/home/omar/IZ2/include/testy/find_letters.h + diff --git a/build/CMakeFiles/f_letter.dir/DependInfo.cmake b/build/CMakeFiles/f_letter.dir/DependInfo.cmake new file mode 100644 index 0000000..362bdbe --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/DependInfo.cmake @@ -0,0 +1,26 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/omar/IZ2/src/find_letters.c" "/home/omar/IZ2/build/CMakeFiles/f_letter.dir/src/find_letters.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "SOURCE_DIR=\"/home/omar/IZ2\"" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "/include/testy" + ) + +# 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/f_letter.dir/build.make b/build/CMakeFiles/f_letter.dir/build.make new file mode 100644 index 0000000..94728a0 --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/IZ2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/IZ2/build + +# Include any dependencies generated for this target. +include CMakeFiles/f_letter.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/f_letter.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/f_letter.dir/flags.make + +CMakeFiles/f_letter.dir/src/find_letters.c.o: CMakeFiles/f_letter.dir/flags.make +CMakeFiles/f_letter.dir/src/find_letters.c.o: ../src/find_letters.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/f_letter.dir/src/find_letters.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/f_letter.dir/src/find_letters.c.o -c /home/omar/IZ2/src/find_letters.c + +CMakeFiles/f_letter.dir/src/find_letters.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/f_letter.dir/src/find_letters.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/omar/IZ2/src/find_letters.c > CMakeFiles/f_letter.dir/src/find_letters.c.i + +CMakeFiles/f_letter.dir/src/find_letters.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/f_letter.dir/src/find_letters.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/omar/IZ2/src/find_letters.c -o CMakeFiles/f_letter.dir/src/find_letters.c.s + +# Object files for target f_letter +f_letter_OBJECTS = \ +"CMakeFiles/f_letter.dir/src/find_letters.c.o" + +# External object files for target f_letter +f_letter_EXTERNAL_OBJECTS = + +libf_letter.a: CMakeFiles/f_letter.dir/src/find_letters.c.o +libf_letter.a: CMakeFiles/f_letter.dir/build.make +libf_letter.a: CMakeFiles/f_letter.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libf_letter.a" + $(CMAKE_COMMAND) -P CMakeFiles/f_letter.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/f_letter.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/f_letter.dir/build: libf_letter.a + +.PHONY : CMakeFiles/f_letter.dir/build + +CMakeFiles/f_letter.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/f_letter.dir/cmake_clean.cmake +.PHONY : CMakeFiles/f_letter.dir/clean + +CMakeFiles/f_letter.dir/depend: + cd /home/omar/IZ2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/IZ2 /home/omar/IZ2 /home/omar/IZ2/build /home/omar/IZ2/build /home/omar/IZ2/build/CMakeFiles/f_letter.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/f_letter.dir/depend + diff --git a/build/CMakeFiles/f_letter.dir/cmake_clean.cmake b/build/CMakeFiles/f_letter.dir/cmake_clean.cmake new file mode 100644 index 0000000..c58861f --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/f_letter.dir/src/find_letters.c.o" + "libf_letter.a" + "libf_letter.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/f_letter.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/f_letter.dir/cmake_clean_target.cmake b/build/CMakeFiles/f_letter.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..5d0e37a --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libf_letter.a" +) diff --git a/build/CMakeFiles/f_letter.dir/depend.internal b/build/CMakeFiles/f_letter.dir/depend.internal new file mode 100644 index 0000000..8be2020 --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/f_letter.dir/src/find_letters.c.o + /home/omar/IZ2/include/testy/find_letters.h + /home/omar/IZ2/src/find_letters.c diff --git a/build/CMakeFiles/f_letter.dir/depend.make b/build/CMakeFiles/f_letter.dir/depend.make new file mode 100644 index 0000000..8334fc7 --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/depend.make @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/f_letter.dir/src/find_letters.c.o: ../include/testy/find_letters.h +CMakeFiles/f_letter.dir/src/find_letters.c.o: ../src/find_letters.c + diff --git a/build/CMakeFiles/f_letter.dir/flags.make b/build/CMakeFiles/f_letter.dir/flags.make new file mode 100644 index 0000000..1d1dfe1 --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -std=gnu11 + +C_DEFINES = -DSOURCE_DIR=\"/home/omar/IZ2\" + +C_INCLUDES = -I/include/testy + diff --git a/build/CMakeFiles/f_letter.dir/link.txt b/build/CMakeFiles/f_letter.dir/link.txt new file mode 100644 index 0000000..10390c5 --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libf_letter.a CMakeFiles/f_letter.dir/src/find_letters.c.o +/usr/bin/ranlib libf_letter.a diff --git a/build/CMakeFiles/f_letter.dir/progress.make b/build/CMakeFiles/f_letter.dir/progress.make new file mode 100644 index 0000000..8c8fb6f --- /dev/null +++ b/build/CMakeFiles/f_letter.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 3 +CMAKE_PROGRESS_2 = 4 + diff --git a/build/CMakeFiles/f_letter.dir/src/find_letters.c.gcno b/build/CMakeFiles/f_letter.dir/src/find_letters.c.gcno new file mode 100644 index 0000000..2448429 Binary files /dev/null and b/build/CMakeFiles/f_letter.dir/src/find_letters.c.gcno differ diff --git a/build/CMakeFiles/f_letter.dir/src/find_letters.c.o b/build/CMakeFiles/f_letter.dir/src/find_letters.c.o new file mode 100644 index 0000000..e101eda Binary files /dev/null and b/build/CMakeFiles/f_letter.dir/src/find_letters.c.o differ diff --git a/build/CMakeFiles/multi_compute_matrix.dir/C.includecache b/build/CMakeFiles/multi_compute_matrix.dir/C.includecache new file mode 100644 index 0000000..ce24dc3 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/C.includecache @@ -0,0 +1,34 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/IZ2/include/testy/find_letters.h +stdio.h +- +stdlib.h +- +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- +time.h +- +dlfcn.h +- + +/home/omar/IZ2/src/find_letters.c +../include/testy/find_letters.h +/home/omar/IZ2/include/testy/find_letters.h + diff --git a/build/CMakeFiles/multi_compute_matrix.dir/DependInfo.cmake b/build/CMakeFiles/multi_compute_matrix.dir/DependInfo.cmake new file mode 100644 index 0000000..4be1fb6 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/DependInfo.cmake @@ -0,0 +1,27 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/omar/IZ2/src/find_letters.c" "/home/omar/IZ2/build/CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "SOURCE_DIR=\"/home/omar/IZ2\"" + "multi_compute_matrix_EXPORTS" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "/include/testy" + ) + +# 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/multi_compute_matrix.dir/build.make b/build/CMakeFiles/multi_compute_matrix.dir/build.make new file mode 100644 index 0000000..e327764 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/build.make @@ -0,0 +1,98 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/IZ2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/IZ2/build + +# Include any dependencies generated for this target. +include CMakeFiles/multi_compute_matrix.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/multi_compute_matrix.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/multi_compute_matrix.dir/flags.make + +CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o: CMakeFiles/multi_compute_matrix.dir/flags.make +CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o: ../src/find_letters.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o -c /home/omar/IZ2/src/find_letters.c + +CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/omar/IZ2/src/find_letters.c > CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.i + +CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/omar/IZ2/src/find_letters.c -o CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.s + +# Object files for target multi_compute_matrix +multi_compute_matrix_OBJECTS = \ +"CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o" + +# External object files for target multi_compute_matrix +multi_compute_matrix_EXTERNAL_OBJECTS = + +libmulti_compute_matrix.so: CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o +libmulti_compute_matrix.so: CMakeFiles/multi_compute_matrix.dir/build.make +libmulti_compute_matrix.so: CMakeFiles/multi_compute_matrix.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C shared module libmulti_compute_matrix.so" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/multi_compute_matrix.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/multi_compute_matrix.dir/build: libmulti_compute_matrix.so + +.PHONY : CMakeFiles/multi_compute_matrix.dir/build + +CMakeFiles/multi_compute_matrix.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/multi_compute_matrix.dir/cmake_clean.cmake +.PHONY : CMakeFiles/multi_compute_matrix.dir/clean + +CMakeFiles/multi_compute_matrix.dir/depend: + cd /home/omar/IZ2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/IZ2 /home/omar/IZ2 /home/omar/IZ2/build /home/omar/IZ2/build /home/omar/IZ2/build/CMakeFiles/multi_compute_matrix.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/multi_compute_matrix.dir/depend + diff --git a/build/CMakeFiles/multi_compute_matrix.dir/cmake_clean.cmake b/build/CMakeFiles/multi_compute_matrix.dir/cmake_clean.cmake new file mode 100644 index 0000000..41df058 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o" + "libmulti_compute_matrix.pdb" + "libmulti_compute_matrix.so" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/multi_compute_matrix.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/multi_compute_matrix.dir/depend.internal b/build/CMakeFiles/multi_compute_matrix.dir/depend.internal new file mode 100644 index 0000000..a598277 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o + /home/omar/IZ2/include/testy/find_letters.h + /home/omar/IZ2/src/find_letters.c diff --git a/build/CMakeFiles/multi_compute_matrix.dir/depend.make b/build/CMakeFiles/multi_compute_matrix.dir/depend.make new file mode 100644 index 0000000..7ae0f45 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/depend.make @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o: ../include/testy/find_letters.h +CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o: ../src/find_letters.c + diff --git a/build/CMakeFiles/multi_compute_matrix.dir/flags.make b/build/CMakeFiles/multi_compute_matrix.dir/flags.make new file mode 100644 index 0000000..091f94a --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -fPIC -std=gnu11 + +C_DEFINES = -DSOURCE_DIR=\"/home/omar/IZ2\" -Dmulti_compute_matrix_EXPORTS + +C_INCLUDES = -I/include/testy + diff --git a/build/CMakeFiles/multi_compute_matrix.dir/link.txt b/build/CMakeFiles/multi_compute_matrix.dir/link.txt new file mode 100644 index 0000000..2fd06d1 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -fPIC -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -shared -o libmulti_compute_matrix.so CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o diff --git a/build/CMakeFiles/multi_compute_matrix.dir/progress.make b/build/CMakeFiles/multi_compute_matrix.dir/progress.make new file mode 100644 index 0000000..3a86673 --- /dev/null +++ b/build/CMakeFiles/multi_compute_matrix.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 5 +CMAKE_PROGRESS_2 = 6 + diff --git a/build/CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.gcno b/build/CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.gcno new file mode 100644 index 0000000..ded5668 Binary files /dev/null and b/build/CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.gcno differ diff --git a/build/CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o b/build/CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o new file mode 100644 index 0000000..ddf59cc Binary files /dev/null and b/build/CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o differ diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/CMakeFiles/testy.dir/C.includecache b/build/CMakeFiles/testy.dir/C.includecache new file mode 100644 index 0000000..3e2ccff --- /dev/null +++ b/build/CMakeFiles/testy.dir/C.includecache @@ -0,0 +1,26 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../include/testy/find_letters.h +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- + +/home/omar/try/src/find_letters.c +testy/find_letters.h +/home/omar/try/src/testy/find_letters.h + diff --git a/build/CMakeFiles/testy.dir/CXX.includecache b/build/CMakeFiles/testy.dir/CXX.includecache new file mode 100644 index 0000000..3862a80 --- /dev/null +++ b/build/CMakeFiles/testy.dir/CXX.includecache @@ -0,0 +1,12 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/try/test/main.cpp +gtest/gtest.h +/home/omar/try/test/gtest/gtest.h + diff --git a/build/CMakeFiles/testy.dir/DependInfo.cmake b/build/CMakeFiles/testy.dir/DependInfo.cmake new file mode 100644 index 0000000..48469aa --- /dev/null +++ b/build/CMakeFiles/testy.dir/DependInfo.cmake @@ -0,0 +1,28 @@ +# 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/omar/try/test/main.cpp" "/home/omar/try/build/CMakeFiles/testy.dir/test/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "SOURCE_DIR=\"/home/omar/try\"" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "../include/testy" + "../include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/omar/try/build/CMakeFiles/compute_matrix.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/testy.dir/build.make b/build/CMakeFiles/testy.dir/build.make new file mode 100644 index 0000000..cc798e8 --- /dev/null +++ b/build/CMakeFiles/testy.dir/build.make @@ -0,0 +1,100 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +# Include any dependencies generated for this target. +include CMakeFiles/testy.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/testy.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/testy.dir/flags.make + +CMakeFiles/testy.dir/test/main.cpp.o: CMakeFiles/testy.dir/flags.make +CMakeFiles/testy.dir/test/main.cpp.o: ../test/main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/testy.dir/test/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testy.dir/test/main.cpp.o -c /home/omar/try/test/main.cpp + +CMakeFiles/testy.dir/test/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testy.dir/test/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/try/test/main.cpp > CMakeFiles/testy.dir/test/main.cpp.i + +CMakeFiles/testy.dir/test/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testy.dir/test/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/try/test/main.cpp -o CMakeFiles/testy.dir/test/main.cpp.s + +# Object files for target testy +testy_OBJECTS = \ +"CMakeFiles/testy.dir/test/main.cpp.o" + +# External object files for target testy +testy_EXTERNAL_OBJECTS = + +testy: CMakeFiles/testy.dir/test/main.cpp.o +testy: CMakeFiles/testy.dir/build.make +testy: /usr/lib/x86_64-linux-gnu/libgtest.a +testy: libcompute_matrix.a +testy: CMakeFiles/testy.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable testy" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/testy.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/testy.dir/build: testy + +.PHONY : CMakeFiles/testy.dir/build + +CMakeFiles/testy.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/testy.dir/cmake_clean.cmake +.PHONY : CMakeFiles/testy.dir/clean + +CMakeFiles/testy.dir/depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try /home/omar/try /home/omar/try/build /home/omar/try/build /home/omar/try/build/CMakeFiles/testy.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/testy.dir/depend + diff --git a/build/CMakeFiles/testy.dir/cmake_clean.cmake b/build/CMakeFiles/testy.dir/cmake_clean.cmake new file mode 100644 index 0000000..0cc6bc5 --- /dev/null +++ b/build/CMakeFiles/testy.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/testy.dir/test/main.cpp.o" + "testy" + "testy.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/testy.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/testy.dir/depend.internal b/build/CMakeFiles/testy.dir/depend.internal new file mode 100644 index 0000000..10409c0 --- /dev/null +++ b/build/CMakeFiles/testy.dir/depend.internal @@ -0,0 +1,5 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/testy.dir/test/main.cpp.o + /home/omar/try/test/main.cpp diff --git a/build/CMakeFiles/testy.dir/depend.make b/build/CMakeFiles/testy.dir/depend.make new file mode 100644 index 0000000..534ebde --- /dev/null +++ b/build/CMakeFiles/testy.dir/depend.make @@ -0,0 +1,5 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/testy.dir/test/main.cpp.o: ../test/main.cpp + diff --git a/build/CMakeFiles/testy.dir/flags.make b/build/CMakeFiles/testy.dir/flags.make new file mode 100644 index 0000000..82fa176 --- /dev/null +++ b/build/CMakeFiles/testy.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -g -Wall -O3 -fprofile-arcs -ftest-coverage -pthread + +CXX_DEFINES = -DSOURCE_DIR=\"/home/omar/try\" + +CXX_INCLUDES = -I/home/omar/try/include/testy -I/home/omar/try/include + diff --git a/build/CMakeFiles/testy.dir/link.txt b/build/CMakeFiles/testy.dir/link.txt new file mode 100644 index 0000000..8d7a2c5 --- /dev/null +++ b/build/CMakeFiles/testy.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -g -Wall -O3 -fprofile-arcs -ftest-coverage CMakeFiles/testy.dir/test/main.cpp.o -o testy /usr/lib/x86_64-linux-gnu/libgtest.a -lpthread -ldl libcompute_matrix.a -pthread diff --git a/build/CMakeFiles/testy.dir/progress.make b/build/CMakeFiles/testy.dir/progress.make new file mode 100644 index 0000000..b700c2c --- /dev/null +++ b/build/CMakeFiles/testy.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = 10 + diff --git a/build/CMakeFiles/testy.dir/src/find_letters.c.o b/build/CMakeFiles/testy.dir/src/find_letters.c.o new file mode 100644 index 0000000..8cd0b7d Binary files /dev/null and b/build/CMakeFiles/testy.dir/src/find_letters.c.o differ diff --git a/build/CMakeFiles/testy.dir/src/main.c.o b/build/CMakeFiles/testy.dir/src/main.c.o new file mode 100644 index 0000000..4339b44 Binary files /dev/null and b/build/CMakeFiles/testy.dir/src/main.c.o differ diff --git a/build/CMakeFiles/testy.dir/test/main.cpp.gcno b/build/CMakeFiles/testy.dir/test/main.cpp.gcno new file mode 100644 index 0000000..beca13a Binary files /dev/null and b/build/CMakeFiles/testy.dir/test/main.cpp.gcno differ diff --git a/build/CMakeFiles/testy.dir/test/main.cpp.o b/build/CMakeFiles/testy.dir/test/main.cpp.o new file mode 100644 index 0000000..b2183f0 Binary files /dev/null and b/build/CMakeFiles/testy.dir/test/main.cpp.o differ diff --git a/build/CMakeFiles/try.dir/C.includecache b/build/CMakeFiles/try.dir/C.includecache new file mode 100644 index 0000000..48fe58d --- /dev/null +++ b/build/CMakeFiles/try.dir/C.includecache @@ -0,0 +1,34 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/IZ2/include/testy/find_letters.h +stdio.h +- +stdlib.h +- +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- +time.h +- +dlfcn.h +- + +/home/omar/IZ2/src/main.c +../include/testy/find_letters.h +/home/omar/IZ2/include/testy/find_letters.h + diff --git a/build/CMakeFiles/try.dir/DependInfo.cmake b/build/CMakeFiles/try.dir/DependInfo.cmake new file mode 100644 index 0000000..07e9d80 --- /dev/null +++ b/build/CMakeFiles/try.dir/DependInfo.cmake @@ -0,0 +1,28 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/omar/IZ2/src/main.c" "/home/omar/IZ2/build/CMakeFiles/try.dir/src/main.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "SOURCE_DIR=\"/home/omar/IZ2\"" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "/include/testy" + "../include/testy" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/omar/IZ2/build/CMakeFiles/f_letter.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/try.dir/build.make b/build/CMakeFiles/try.dir/build.make new file mode 100644 index 0000000..dc6fe58 --- /dev/null +++ b/build/CMakeFiles/try.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/IZ2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/IZ2/build + +# Include any dependencies generated for this target. +include CMakeFiles/try.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/try.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/try.dir/flags.make + +CMakeFiles/try.dir/src/main.c.o: CMakeFiles/try.dir/flags.make +CMakeFiles/try.dir/src/main.c.o: ../src/main.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/try.dir/src/main.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/try.dir/src/main.c.o -c /home/omar/IZ2/src/main.c + +CMakeFiles/try.dir/src/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/try.dir/src/main.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/omar/IZ2/src/main.c > CMakeFiles/try.dir/src/main.c.i + +CMakeFiles/try.dir/src/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/try.dir/src/main.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/omar/IZ2/src/main.c -o CMakeFiles/try.dir/src/main.c.s + +# Object files for target try +try_OBJECTS = \ +"CMakeFiles/try.dir/src/main.c.o" + +# External object files for target try +try_EXTERNAL_OBJECTS = + +try: CMakeFiles/try.dir/src/main.c.o +try: CMakeFiles/try.dir/build.make +try: libf_letter.a +try: CMakeFiles/try.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/IZ2/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable try" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/try.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/try.dir/build: try + +.PHONY : CMakeFiles/try.dir/build + +CMakeFiles/try.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/try.dir/cmake_clean.cmake +.PHONY : CMakeFiles/try.dir/clean + +CMakeFiles/try.dir/depend: + cd /home/omar/IZ2/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/IZ2 /home/omar/IZ2 /home/omar/IZ2/build /home/omar/IZ2/build /home/omar/IZ2/build/CMakeFiles/try.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/try.dir/depend + diff --git a/build/CMakeFiles/try.dir/cmake_clean.cmake b/build/CMakeFiles/try.dir/cmake_clean.cmake new file mode 100644 index 0000000..a683a5e --- /dev/null +++ b/build/CMakeFiles/try.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/try.dir/src/main.c.o" + "try" + "try.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/try.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/try.dir/depend.internal b/build/CMakeFiles/try.dir/depend.internal new file mode 100644 index 0000000..b197c82 --- /dev/null +++ b/build/CMakeFiles/try.dir/depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/try.dir/src/main.c.o + /home/omar/IZ2/include/testy/find_letters.h + /home/omar/IZ2/src/main.c diff --git a/build/CMakeFiles/try.dir/depend.make b/build/CMakeFiles/try.dir/depend.make new file mode 100644 index 0000000..331d7bf --- /dev/null +++ b/build/CMakeFiles/try.dir/depend.make @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +CMakeFiles/try.dir/src/main.c.o: ../include/testy/find_letters.h +CMakeFiles/try.dir/src/main.c.o: ../src/main.c + diff --git a/build/CMakeFiles/try.dir/flags.make b/build/CMakeFiles/try.dir/flags.make new file mode 100644 index 0000000..4c97c06 --- /dev/null +++ b/build/CMakeFiles/try.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +C_FLAGS = -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage -std=gnu11 + +C_DEFINES = -DSOURCE_DIR=\"/home/omar/IZ2\" + +C_INCLUDES = -I/include/testy -I/home/omar/IZ2/include/testy + diff --git a/build/CMakeFiles/try.dir/link.txt b/build/CMakeFiles/try.dir/link.txt new file mode 100644 index 0000000..5176039 --- /dev/null +++ b/build/CMakeFiles/try.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage CMakeFiles/try.dir/src/main.c.o -o try -lpthread -ldl libf_letter.a -lpthread diff --git a/build/CMakeFiles/try.dir/progress.make b/build/CMakeFiles/try.dir/progress.make new file mode 100644 index 0000000..72bb7dd --- /dev/null +++ b/build/CMakeFiles/try.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 7 +CMAKE_PROGRESS_2 = 8 + diff --git a/build/CMakeFiles/try.dir/src/main.c.gcda b/build/CMakeFiles/try.dir/src/main.c.gcda new file mode 100644 index 0000000..11b1a88 Binary files /dev/null and b/build/CMakeFiles/try.dir/src/main.c.gcda differ diff --git a/build/CMakeFiles/try.dir/src/main.c.gcno b/build/CMakeFiles/try.dir/src/main.c.gcno new file mode 100644 index 0000000..5e4cccc Binary files /dev/null and b/build/CMakeFiles/try.dir/src/main.c.gcno differ diff --git a/build/CMakeFiles/try.dir/src/main.c.o b/build/CMakeFiles/try.dir/src/main.c.o new file mode 100644 index 0000000..aa8e2c8 Binary files /dev/null and b/build/CMakeFiles/try.dir/src/main.c.o differ diff --git a/build/CTestTestfile.cmake b/build/CTestTestfile.cmake new file mode 100644 index 0000000..e1f4b8c --- /dev/null +++ b/build/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/omar/IZ2 +# Build directory: /home/omar/IZ2/build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000..fffb6aa --- /dev/null +++ b/build/Makefile @@ -0,0 +1,295 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/omar/IZ2 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/IZ2/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles /home/omar/IZ2/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/IZ2/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named try + +# Build rule for target. +try: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 try +.PHONY : try + +# fast build rule for target. +try/fast: + $(MAKE) -f CMakeFiles/try.dir/build.make CMakeFiles/try.dir/build +.PHONY : try/fast + +#============================================================================= +# Target rules for targets named TEST + +# Build rule for target. +TEST: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 TEST +.PHONY : TEST + +# fast build rule for target. +TEST/fast: + $(MAKE) -f CMakeFiles/TEST.dir/build.make CMakeFiles/TEST.dir/build +.PHONY : TEST/fast + +#============================================================================= +# Target rules for targets named multi_compute_matrix + +# Build rule for target. +multi_compute_matrix: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 multi_compute_matrix +.PHONY : multi_compute_matrix + +# fast build rule for target. +multi_compute_matrix/fast: + $(MAKE) -f CMakeFiles/multi_compute_matrix.dir/build.make CMakeFiles/multi_compute_matrix.dir/build +.PHONY : multi_compute_matrix/fast + +#============================================================================= +# Target rules for targets named f_letter + +# Build rule for target. +f_letter: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 f_letter +.PHONY : f_letter + +# fast build rule for target. +f_letter/fast: + $(MAKE) -f CMakeFiles/f_letter.dir/build.make CMakeFiles/f_letter.dir/build +.PHONY : f_letter/fast + +src/find_letters.o: src/find_letters.c.o + +.PHONY : src/find_letters.o + +# target to build an object file +src/find_letters.c.o: + $(MAKE) -f CMakeFiles/multi_compute_matrix.dir/build.make CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.o + $(MAKE) -f CMakeFiles/f_letter.dir/build.make CMakeFiles/f_letter.dir/src/find_letters.c.o +.PHONY : src/find_letters.c.o + +src/find_letters.i: src/find_letters.c.i + +.PHONY : src/find_letters.i + +# target to preprocess a source file +src/find_letters.c.i: + $(MAKE) -f CMakeFiles/multi_compute_matrix.dir/build.make CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.i + $(MAKE) -f CMakeFiles/f_letter.dir/build.make CMakeFiles/f_letter.dir/src/find_letters.c.i +.PHONY : src/find_letters.c.i + +src/find_letters.s: src/find_letters.c.s + +.PHONY : src/find_letters.s + +# target to generate assembly for a file +src/find_letters.c.s: + $(MAKE) -f CMakeFiles/multi_compute_matrix.dir/build.make CMakeFiles/multi_compute_matrix.dir/src/find_letters.c.s + $(MAKE) -f CMakeFiles/f_letter.dir/build.make CMakeFiles/f_letter.dir/src/find_letters.c.s +.PHONY : src/find_letters.c.s + +src/main.o: src/main.c.o + +.PHONY : src/main.o + +# target to build an object file +src/main.c.o: + $(MAKE) -f CMakeFiles/try.dir/build.make CMakeFiles/try.dir/src/main.c.o +.PHONY : src/main.c.o + +src/main.i: src/main.c.i + +.PHONY : src/main.i + +# target to preprocess a source file +src/main.c.i: + $(MAKE) -f CMakeFiles/try.dir/build.make CMakeFiles/try.dir/src/main.c.i +.PHONY : src/main.c.i + +src/main.s: src/main.c.s + +.PHONY : src/main.s + +# target to generate assembly for a file +src/main.c.s: + $(MAKE) -f CMakeFiles/try.dir/build.make CMakeFiles/try.dir/src/main.c.s +.PHONY : src/main.c.s + +test/main.o: test/main.cpp.o + +.PHONY : test/main.o + +# target to build an object file +test/main.cpp.o: + $(MAKE) -f CMakeFiles/TEST.dir/build.make CMakeFiles/TEST.dir/test/main.cpp.o +.PHONY : test/main.cpp.o + +test/main.i: test/main.cpp.i + +.PHONY : test/main.i + +# target to preprocess a source file +test/main.cpp.i: + $(MAKE) -f CMakeFiles/TEST.dir/build.make CMakeFiles/TEST.dir/test/main.cpp.i +.PHONY : test/main.cpp.i + +test/main.s: test/main.cpp.s + +.PHONY : test/main.s + +# target to generate assembly for a file +test/main.cpp.s: + $(MAKE) -f CMakeFiles/TEST.dir/build.make CMakeFiles/TEST.dir/test/main.cpp.s +.PHONY : test/main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... test" + @echo "... try" + @echo "... TEST" + @echo "... multi_compute_matrix" + @echo "... f_letter" + @echo "... src/find_letters.o" + @echo "... src/find_letters.i" + @echo "... src/find_letters.s" + @echo "... src/main.o" + @echo "... src/main.i" + @echo "... src/main.s" + @echo "... test/main.o" + @echo "... test/main.i" + @echo "... test/main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/TEST b/build/TEST new file mode 100755 index 0000000..593deda Binary files /dev/null and b/build/TEST differ diff --git a/build/Testing/Temporary/CTestCostData.txt b/build/Testing/Temporary/CTestCostData.txt new file mode 100644 index 0000000..b322cb6 --- /dev/null +++ b/build/Testing/Temporary/CTestCostData.txt @@ -0,0 +1,2 @@ +find_letters 10 0.000250875 +--- diff --git a/build/Testing/Temporary/LastTest.log b/build/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..e422e69 --- /dev/null +++ b/build/Testing/Temporary/LastTest.log @@ -0,0 +1,34 @@ +Start testing: Nov 07 22:46 MSK +---------------------------------------------------------- +1/1 Testing: find_letters +1/1 Test: find_letters +Command: "/home/omar/try/build/test/find_letters_tests" +Directory: /home/omar/try/build/test +"find_letters" start time: Nov 07 22:46 MSK +Output: +---------------------------------------------------------- +[==========] Running 2 tests from 2 test cases. +[----------] Global test environment set-up. +[----------] 1 test from date_in_key +[ RUN ] date_in_key.ok +[ OK ] date_in_key.ok (0 ms) +[----------] 1 test from date_in_key (0 ms total) + +[----------] 1 test from binary_search +[ RUN ] binary_search.ok +Элемент найден! Искать будем до 0 при ключе 0 +[ OK ] binary_search.ok (0 ms) +[----------] 1 test from binary_search (0 ms total) + +[----------] Global test environment tear-down +[==========] 2 tests from 2 test cases ran. (0 ms total) +[ PASSED ] 2 tests. + +Test time = 0.00 sec +---------------------------------------------------------- +Test Passed. +"find_letters" end time: Nov 07 22:46 MSK +"find_letters" time elapsed: 00:00:00 +---------------------------------------------------------- + +End testing: Nov 07 22:46 MSK diff --git a/build/Testing/Temporary/LastTestsFailed.log b/build/Testing/Temporary/LastTestsFailed.log new file mode 100644 index 0000000..102e254 --- /dev/null +++ b/build/Testing/Temporary/LastTestsFailed.log @@ -0,0 +1 @@ +1:find_letters diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..31f0815 --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/omar/IZ2 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/omar/IZ2/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/googletest-build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/googletest-build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..8a1fca2 --- /dev/null +++ b/build/googletest-build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/omar/try") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/omar/try/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/googletest-build/CMakeFiles/progress.marks b/build/googletest-build/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/build/googletest-build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/googletest-build/CTestTestfile.cmake b/build/googletest-build/CTestTestfile.cmake new file mode 100644 index 0000000..a619810 --- /dev/null +++ b/build/googletest-build/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /home/omar/try/build/googletest-src +# Build directory: /home/omar/try/build/googletest-build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("googlemock") diff --git a/build/googletest-build/Makefile b/build/googletest-build/Makefile new file mode 100644 index 0000000..96e8c8a --- /dev/null +++ b/build/googletest-build/Makefile @@ -0,0 +1,196 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# The main all target +all: cmake_check_build_system + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles /home/omar/try/build/googletest-build/CMakeFiles/progress.marks + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... install/local" + @echo "... install" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... test" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/googletest-build/cmake_install.cmake b/build/googletest-build/cmake_install.cmake new file mode 100644 index 0000000..2304959 --- /dev/null +++ b/build/googletest-build/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /home/omar/try/build/googletest-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/omar/try/build/googletest-build/googlemock/cmake_install.cmake") + +endif() + diff --git a/build/googletest-build/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake b/build/googletest-build/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..8a1fca2 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/omar/try") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/omar/try/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/googletest-build/googlemock/CMakeFiles/gmock.dir/CXX.includecache b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/CXX.includecache new file mode 100644 index 0000000..5bb0047 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/CXX.includecache @@ -0,0 +1,562 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/try/build/googletest-src/googlemock/src/gmock-all.cc +gmock/gmock.h +/home/omar/try/build/googletest-src/googlemock/src/gmock/gmock.h +src/gmock-cardinalities.cc +/home/omar/try/build/googletest-src/googlemock/src/src/gmock-cardinalities.cc +src/gmock-internal-utils.cc +/home/omar/try/build/googletest-src/googlemock/src/src/gmock-internal-utils.cc +src/gmock-matchers.cc +/home/omar/try/build/googletest-src/googlemock/src/src/gmock-matchers.cc +src/gmock-spec-builders.cc +/home/omar/try/build/googletest-src/googlemock/src/src/gmock-spec-builders.cc +src/gmock.cc +/home/omar/try/build/googletest-src/googlemock/src/src/gmock.cc + +googletest-src/googlemock/include/gmock/gmock-actions.h +errno.h +- +algorithm +- +string +- +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +functional +- +type_traits +- + +googletest-src/googlemock/include/gmock/gmock-cardinalities.h +limits.h +- +ostream +- +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +gtest/gtest.h +googletest-src/googlemock/include/gmock/gtest/gtest.h + +googletest-src/googlemock/include/gmock/gmock-generated-actions.h +gmock/gmock-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-actions.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +gmock/internal/custom/gmock-generated-actions.h +googletest-src/googlemock/include/gmock/gmock/internal/custom/gmock-generated-actions.h + +googletest-src/googlemock/include/gmock/gmock-generated-function-mockers.h +gmock/gmock-spec-builders.h +googletest-src/googlemock/include/gmock/gmock/gmock-spec-builders.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +functional +- + +googletest-src/googlemock/include/gmock/gmock-generated-matchers.h +iterator +- +sstream +- +string +- +vector +- +gmock/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-matchers.h + +googletest-src/googlemock/include/gmock/gmock-generated-nice-strict.h +gmock/gmock-spec-builders.h +googletest-src/googlemock/include/gmock/gmock/gmock-spec-builders.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h + +googletest-src/googlemock/include/gmock/gmock-matchers.h +math.h +- +algorithm +- +iterator +- +limits +- +ostream +- +sstream +- +string +- +utility +- +vector +- +gtest/gtest.h +googletest-src/googlemock/include/gmock/gtest/gtest.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +initializer_list +- +gmock/internal/custom/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/internal/custom/gmock-matchers.h + +googletest-src/googlemock/include/gmock/gmock-more-actions.h +algorithm +- +gmock/gmock-generated-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-actions.h + +googletest-src/googlemock/include/gmock/gmock-more-matchers.h +gmock/gmock-generated-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-matchers.h + +googletest-src/googlemock/include/gmock/gmock-spec-builders.h +map +- +set +- +sstream +- +string +- +vector +- +gmock/gmock-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-actions.h +gmock/gmock-cardinalities.h +googletest-src/googlemock/include/gmock/gmock/gmock-cardinalities.h +gmock/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-matchers.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +gtest/gtest.h +googletest-src/googlemock/include/gmock/gtest/gtest.h +stdexcept +- + +googletest-src/googlemock/include/gmock/gmock.h +gmock/gmock-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-actions.h +gmock/gmock-cardinalities.h +googletest-src/googlemock/include/gmock/gmock/gmock-cardinalities.h +gmock/gmock-generated-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-actions.h +gmock/gmock-generated-function-mockers.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-function-mockers.h +gmock/gmock-generated-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-matchers.h +gmock/gmock-generated-nice-strict.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-nice-strict.h +gmock/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-matchers.h +gmock/gmock-more-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-more-actions.h +gmock/gmock-more-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-more-matchers.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h + +googletest-src/googlemock/include/gmock/internal/custom/gmock-generated-actions.h + +googletest-src/googlemock/include/gmock/internal/custom/gmock-matchers.h + +googletest-src/googlemock/include/gmock/internal/custom/gmock-port.h + +googletest-src/googlemock/include/gmock/internal/gmock-generated-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/gmock-port.h + +googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h +stdio.h +- +ostream +- +string +- +gmock/internal/gmock-generated-internal-utils.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/gmock-generated-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/gmock-port.h +gtest/gtest.h +googletest-src/googlemock/include/gmock/internal/gtest/gtest.h + +googletest-src/googlemock/include/gmock/internal/gmock-port.h +assert.h +- +stdlib.h +- +iostream +- +gtest/internal/gtest-linked_ptr.h +googletest-src/googlemock/include/gmock/internal/gtest/internal/gtest-linked_ptr.h +gtest/internal/gtest-port.h +googletest-src/googlemock/include/gmock/internal/gtest/internal/gtest-port.h +gmock/internal/custom/gmock-port.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/custom/gmock-port.h + +googletest-src/googlemock/src/gmock-cardinalities.cc +gmock/gmock-cardinalities.h +googletest-src/googlemock/src/gmock/gmock-cardinalities.h +limits.h +- +ostream +- +sstream +- +string +- +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/src/gmock/internal/gmock-internal-utils.h +gtest/gtest.h +googletest-src/googlemock/src/gtest/gtest.h + +googletest-src/googlemock/src/gmock-internal-utils.cc +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/src/gmock/internal/gmock-internal-utils.h +ctype.h +- +ostream +- +string +- +gmock/gmock.h +googletest-src/googlemock/src/gmock/gmock.h +gmock/internal/gmock-port.h +googletest-src/googlemock/src/gmock/internal/gmock-port.h +gtest/gtest.h +googletest-src/googlemock/src/gtest/gtest.h + +googletest-src/googlemock/src/gmock-matchers.cc +gmock/gmock-matchers.h +googletest-src/googlemock/src/gmock/gmock-matchers.h +gmock/gmock-generated-matchers.h +googletest-src/googlemock/src/gmock/gmock-generated-matchers.h +string.h +- +iostream +- +sstream +- +string +- + +googletest-src/googlemock/src/gmock-spec-builders.cc +gmock/gmock-spec-builders.h +googletest-src/googlemock/src/gmock/gmock-spec-builders.h +stdlib.h +- +iostream +- +map +- +set +- +string +- +vector +- +gmock/gmock.h +googletest-src/googlemock/src/gmock/gmock.h +gtest/gtest.h +googletest-src/googlemock/src/gtest/gtest.h +unistd.h +- + +googletest-src/googlemock/src/gmock.cc +gmock/gmock.h +googletest-src/googlemock/src/gmock/gmock.h +gmock/internal/gmock-port.h +googletest-src/googlemock/src/gmock/internal/gmock-port.h + +googletest-src/googletest/include/gtest/gtest-death-test.h +gtest/internal/gtest-death-test-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-death-test-internal.h + +googletest-src/googletest/include/gtest/gtest-message.h +limits +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/gtest-param-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +utility +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util.h +gtest/internal/gtest-param-util-generated.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util-generated.h + +googletest-src/googletest/include/gtest/gtest-printers.h +ostream +- +sstream +- +string +- +utility +- +vector +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +tuple +- +absl/strings/string_view.h +googletest-src/googletest/include/gtest/absl/strings/string_view.h +absl/types/optional.h +googletest-src/googletest/include/gtest/absl/types/optional.h +absl/types/variant.h +googletest-src/googletest/include/gtest/absl/types/variant.h +gtest/internal/custom/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/gtest-test-part.h +iosfwd +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/gtest-typed-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/gtest.h +limits +- +ostream +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h +gtest/gtest-death-test.h +googletest-src/googletest/include/gtest/gtest/gtest-death-test.h +gtest/gtest-message.h +googletest-src/googletest/include/gtest/gtest/gtest-message.h +gtest/gtest-param-test.h +googletest-src/googletest/include/gtest/gtest/gtest-param-test.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/gtest-printers.h +gtest/gtest_prod.h +googletest-src/googletest/include/gtest/gtest/gtest_prod.h +gtest/gtest-test-part.h +googletest-src/googletest/include/gtest/gtest/gtest-test-part.h +gtest/gtest-typed-test.h +googletest-src/googletest/include/gtest/gtest/gtest-typed-test.h +gtest/gtest_pred_impl.h +googletest-src/googletest/include/gtest/gtest/gtest_pred_impl.h + +googletest-src/googletest/include/gtest/gtest_pred_impl.h +gtest/gtest.h +googletest-src/googletest/include/gtest/gtest/gtest.h + +googletest-src/googletest/include/gtest/gtest_prod.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +stdio.h +- + +googletest-src/googletest/include/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/internal/gtest-internal.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +stdlib.h +- +sys/types.h +- +sys/wait.h +- +unistd.h +- +stdexcept +- +ctype.h +- +float.h +- +string.h +- +iomanip +- +limits +- +map +- +set +- +string +- +vector +- +gtest/gtest-message.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-message.h +gtest/internal/gtest-filepath.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +stdlib.h +- +assert.h +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-param-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util.h +ctype.h +- +iterator +- +set +- +utility +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +gtest/internal/gtest-linked_ptr.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-linked_ptr.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +winapifamily.h +- + +googletest-src/googletest/include/gtest/internal/gtest-port.h +ctype.h +- +stddef.h +- +stdlib.h +- +stdio.h +- +string.h +- +sys/types.h +- +sys/stat.h +- +AvailabilityMacros.h +- +TargetConditionals.h +- +string +- +algorithm +- +iostream +- +sstream +- +utility +- +vector +- +gtest/internal/gtest-port-arch.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port-arch.h +gtest/internal/custom/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/custom/gtest-port.h +direct.h +- +io.h +- +unistd.h +- +strings.h +- +android/api-level.h +- +regex.h +- +typeinfo +- +pthread.h +- +time.h +- +tuple +- +gtest/internal/gtest-tuple.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-tuple.h +tuple +- +tr1/tuple +- +tr1/tuple +- +tuple +- +tr1/tuple +- + +googletest-src/googletest/include/gtest/internal/gtest-string.h +mem.h +- +string.h +- +string +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-tuple.h +utility +- + +googletest-src/googletest/include/gtest/internal/gtest-type-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +cxxabi.h +- +acxx_demangle.h +- + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake new file mode 100644 index 0000000..174a073 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake @@ -0,0 +1,25 @@ +# 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/omar/try/build/googletest-src/googlemock/src/gmock-all.cc" "/home/omar/try/build/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "googletest-src/googlemock/include" + "googletest-src/googlemock" + "googletest-src/googletest/include" + "googletest-src/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make new file mode 100644 index 0000000..cf4cdf6 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +# Include any dependencies generated for this target. +include googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make + +# Include the progress variables for this target. +include googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make + +# Include the compile flags for this target's objects. +include googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make + +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/src/gmock-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + cd /home/omar/try/build/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /home/omar/try/build/googletest-src/googlemock/src/gmock-all.cc + +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock.dir/src/gmock-all.cc.i" + cd /home/omar/try/build/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/try/build/googletest-src/googlemock/src/gmock-all.cc > CMakeFiles/gmock.dir/src/gmock-all.cc.i + +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock.dir/src/gmock-all.cc.s" + cd /home/omar/try/build/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/try/build/googletest-src/googlemock/src/gmock-all.cc -o CMakeFiles/gmock.dir/src/gmock-all.cc.s + +# Object files for target gmock +gmock_OBJECTS = \ +"CMakeFiles/gmock.dir/src/gmock-all.cc.o" + +# External object files for target gmock +gmock_EXTERNAL_OBJECTS = + +googletest-build/googlemock/libgmock.a: googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +googletest-build/googlemock/libgmock.a: googletest-build/googlemock/CMakeFiles/gmock.dir/build.make +googletest-build/googlemock/libgmock.a: googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgmock.a" + cd /home/omar/try/build/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean_target.cmake + cd /home/omar/try/build/googletest-build/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +googletest-build/googlemock/CMakeFiles/gmock.dir/build: googletest-build/googlemock/libgmock.a + +.PHONY : googletest-build/googlemock/CMakeFiles/gmock.dir/build + +googletest-build/googlemock/CMakeFiles/gmock.dir/clean: + cd /home/omar/try/build/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean.cmake +.PHONY : googletest-build/googlemock/CMakeFiles/gmock.dir/clean + +googletest-build/googlemock/CMakeFiles/gmock.dir/depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try /home/omar/try/build/googletest-src/googlemock /home/omar/try/build /home/omar/try/build/googletest-build/googlemock /home/omar/try/build/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : googletest-build/googlemock/CMakeFiles/gmock.dir/depend + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake new file mode 100644 index 0000000..3e64cbe --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock.dir/src/gmock-all.cc.o" + "libgmock.a" + "libgmock.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..26683f2 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgmock.a" +) diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.internal b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.internal new file mode 100644 index 0000000..3644b20 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.internal @@ -0,0 +1,49 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o + /home/omar/try/build/googletest-src/googlemock/src/gmock-all.cc + googletest-src/googlemock/include/gmock/gmock-actions.h + googletest-src/googlemock/include/gmock/gmock-cardinalities.h + googletest-src/googlemock/include/gmock/gmock-generated-actions.h + googletest-src/googlemock/include/gmock/gmock-generated-function-mockers.h + googletest-src/googlemock/include/gmock/gmock-generated-matchers.h + googletest-src/googlemock/include/gmock/gmock-generated-nice-strict.h + googletest-src/googlemock/include/gmock/gmock-matchers.h + googletest-src/googlemock/include/gmock/gmock-more-actions.h + googletest-src/googlemock/include/gmock/gmock-more-matchers.h + googletest-src/googlemock/include/gmock/gmock-spec-builders.h + googletest-src/googlemock/include/gmock/gmock.h + googletest-src/googlemock/include/gmock/internal/custom/gmock-generated-actions.h + googletest-src/googlemock/include/gmock/internal/custom/gmock-matchers.h + googletest-src/googlemock/include/gmock/internal/custom/gmock-port.h + googletest-src/googlemock/include/gmock/internal/gmock-generated-internal-utils.h + googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h + googletest-src/googlemock/include/gmock/internal/gmock-port.h + googletest-src/googlemock/src/gmock-cardinalities.cc + googletest-src/googlemock/src/gmock-internal-utils.cc + googletest-src/googlemock/src/gmock-matchers.cc + googletest-src/googlemock/src/gmock-spec-builders.cc + googletest-src/googlemock/src/gmock.cc + googletest-src/googletest/include/gtest/gtest-death-test.h + googletest-src/googletest/include/gtest/gtest-message.h + googletest-src/googletest/include/gtest/gtest-param-test.h + googletest-src/googletest/include/gtest/gtest-printers.h + googletest-src/googletest/include/gtest/gtest-test-part.h + googletest-src/googletest/include/gtest/gtest-typed-test.h + googletest-src/googletest/include/gtest/gtest.h + googletest-src/googletest/include/gtest/gtest_pred_impl.h + googletest-src/googletest/include/gtest/gtest_prod.h + googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h + googletest-src/googletest/include/gtest/internal/gtest-filepath.h + googletest-src/googletest/include/gtest/internal/gtest-internal.h + googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h + googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h + googletest-src/googletest/include/gtest/internal/gtest-param-util.h + googletest-src/googletest/include/gtest/internal/gtest-port-arch.h + googletest-src/googletest/include/gtest/internal/gtest-port.h + googletest-src/googletest/include/gtest/internal/gtest-string.h + googletest-src/googletest/include/gtest/internal/gtest-tuple.h + googletest-src/googletest/include/gtest/internal/gtest-type-util.h diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make new file mode 100644 index 0000000..f65b4e1 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/depend.make @@ -0,0 +1,49 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/src/gmock-all.cc +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-actions.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-cardinalities.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-actions.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-function-mockers.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-matchers.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-nice-strict.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-matchers.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-more-actions.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-more-matchers.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock-spec-builders.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/gmock.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/internal/custom/gmock-matchers.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/internal/custom/gmock-port.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/internal/gmock-generated-internal-utils.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/include/gmock/internal/gmock-port.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/src/gmock-cardinalities.cc +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/src/gmock-internal-utils.cc +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/src/gmock-matchers.cc +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/src/gmock-spec-builders.cc +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googlemock/src/gmock.cc +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest-death-test.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest-message.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest-param-test.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest-printers.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest-test-part.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest-typed-test.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest_pred_impl.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/gtest_prod.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-port.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-filepath.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-internal.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-string.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-tuple.h +googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-type-util.h + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make new file mode 100644 index 0000000..24d9940 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -Wall -Wshadow -Werror -Wno-error=dangling-else -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -pthread + +CXX_DEFINES = + +CXX_INCLUDES = -I/home/omar/try/build/googletest-src/googlemock/include -I/home/omar/try/build/googletest-src/googlemock -isystem /home/omar/try/build/googletest-src/googletest/include -isystem /home/omar/try/build/googletest-src/googletest + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt new file mode 100644 index 0000000..efd51b0 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libgmock.a CMakeFiles/gmock.dir/src/gmock-all.cc.o +/usr/bin/ranlib libgmock.a diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make new file mode 100644 index 0000000..3a86673 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 5 +CMAKE_PROGRESS_2 = 6 + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o new file mode 100644 index 0000000..fe6276e Binary files /dev/null and b/build/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o differ diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/CXX.includecache b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/CXX.includecache new file mode 100644 index 0000000..41459ba --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/CXX.includecache @@ -0,0 +1,484 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/try/build/googletest-src/googlemock/src/gmock_main.cc +iostream +- +gmock/gmock.h +/home/omar/try/build/googletest-src/googlemock/src/gmock/gmock.h +gtest/gtest.h +/home/omar/try/build/googletest-src/googlemock/src/gtest/gtest.h +tchar.h +- + +googletest-src/googlemock/include/gmock/gmock-actions.h +errno.h +- +algorithm +- +string +- +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +functional +- +type_traits +- + +googletest-src/googlemock/include/gmock/gmock-cardinalities.h +limits.h +- +ostream +- +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +gtest/gtest.h +googletest-src/googlemock/include/gmock/gtest/gtest.h + +googletest-src/googlemock/include/gmock/gmock-generated-actions.h +gmock/gmock-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-actions.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +gmock/internal/custom/gmock-generated-actions.h +googletest-src/googlemock/include/gmock/gmock/internal/custom/gmock-generated-actions.h + +googletest-src/googlemock/include/gmock/gmock-generated-function-mockers.h +gmock/gmock-spec-builders.h +googletest-src/googlemock/include/gmock/gmock/gmock-spec-builders.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +functional +- + +googletest-src/googlemock/include/gmock/gmock-generated-matchers.h +iterator +- +sstream +- +string +- +vector +- +gmock/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-matchers.h + +googletest-src/googlemock/include/gmock/gmock-generated-nice-strict.h +gmock/gmock-spec-builders.h +googletest-src/googlemock/include/gmock/gmock/gmock-spec-builders.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h + +googletest-src/googlemock/include/gmock/gmock-matchers.h +math.h +- +algorithm +- +iterator +- +limits +- +ostream +- +sstream +- +string +- +utility +- +vector +- +gtest/gtest.h +googletest-src/googlemock/include/gmock/gtest/gtest.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +initializer_list +- +gmock/internal/custom/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/internal/custom/gmock-matchers.h + +googletest-src/googlemock/include/gmock/gmock-more-actions.h +algorithm +- +gmock/gmock-generated-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-actions.h + +googletest-src/googlemock/include/gmock/gmock-more-matchers.h +gmock/gmock-generated-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-matchers.h + +googletest-src/googlemock/include/gmock/gmock-spec-builders.h +map +- +set +- +sstream +- +string +- +vector +- +gmock/gmock-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-actions.h +gmock/gmock-cardinalities.h +googletest-src/googlemock/include/gmock/gmock/gmock-cardinalities.h +gmock/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-matchers.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-port.h +gtest/gtest.h +googletest-src/googlemock/include/gmock/gtest/gtest.h +stdexcept +- + +googletest-src/googlemock/include/gmock/gmock.h +gmock/gmock-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-actions.h +gmock/gmock-cardinalities.h +googletest-src/googlemock/include/gmock/gmock/gmock-cardinalities.h +gmock/gmock-generated-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-actions.h +gmock/gmock-generated-function-mockers.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-function-mockers.h +gmock/gmock-generated-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-matchers.h +gmock/gmock-generated-nice-strict.h +googletest-src/googlemock/include/gmock/gmock/gmock-generated-nice-strict.h +gmock/gmock-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-matchers.h +gmock/gmock-more-actions.h +googletest-src/googlemock/include/gmock/gmock/gmock-more-actions.h +gmock/gmock-more-matchers.h +googletest-src/googlemock/include/gmock/gmock/gmock-more-matchers.h +gmock/internal/gmock-internal-utils.h +googletest-src/googlemock/include/gmock/gmock/internal/gmock-internal-utils.h + +googletest-src/googlemock/include/gmock/internal/custom/gmock-generated-actions.h + +googletest-src/googlemock/include/gmock/internal/custom/gmock-matchers.h + +googletest-src/googlemock/include/gmock/internal/custom/gmock-port.h + +googletest-src/googlemock/include/gmock/internal/gmock-generated-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/gmock-port.h + +googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h +stdio.h +- +ostream +- +string +- +gmock/internal/gmock-generated-internal-utils.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/gmock-generated-internal-utils.h +gmock/internal/gmock-port.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/gmock-port.h +gtest/gtest.h +googletest-src/googlemock/include/gmock/internal/gtest/gtest.h + +googletest-src/googlemock/include/gmock/internal/gmock-port.h +assert.h +- +stdlib.h +- +iostream +- +gtest/internal/gtest-linked_ptr.h +googletest-src/googlemock/include/gmock/internal/gtest/internal/gtest-linked_ptr.h +gtest/internal/gtest-port.h +googletest-src/googlemock/include/gmock/internal/gtest/internal/gtest-port.h +gmock/internal/custom/gmock-port.h +googletest-src/googlemock/include/gmock/internal/gmock/internal/custom/gmock-port.h + +googletest-src/googletest/include/gtest/gtest-death-test.h +gtest/internal/gtest-death-test-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-death-test-internal.h + +googletest-src/googletest/include/gtest/gtest-message.h +limits +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/gtest-param-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +utility +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util.h +gtest/internal/gtest-param-util-generated.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util-generated.h + +googletest-src/googletest/include/gtest/gtest-printers.h +ostream +- +sstream +- +string +- +utility +- +vector +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +tuple +- +absl/strings/string_view.h +googletest-src/googletest/include/gtest/absl/strings/string_view.h +absl/types/optional.h +googletest-src/googletest/include/gtest/absl/types/optional.h +absl/types/variant.h +googletest-src/googletest/include/gtest/absl/types/variant.h +gtest/internal/custom/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/gtest-test-part.h +iosfwd +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/gtest-typed-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/gtest.h +limits +- +ostream +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h +gtest/gtest-death-test.h +googletest-src/googletest/include/gtest/gtest/gtest-death-test.h +gtest/gtest-message.h +googletest-src/googletest/include/gtest/gtest/gtest-message.h +gtest/gtest-param-test.h +googletest-src/googletest/include/gtest/gtest/gtest-param-test.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/gtest-printers.h +gtest/gtest_prod.h +googletest-src/googletest/include/gtest/gtest/gtest_prod.h +gtest/gtest-test-part.h +googletest-src/googletest/include/gtest/gtest/gtest-test-part.h +gtest/gtest-typed-test.h +googletest-src/googletest/include/gtest/gtest/gtest-typed-test.h +gtest/gtest_pred_impl.h +googletest-src/googletest/include/gtest/gtest/gtest_pred_impl.h + +googletest-src/googletest/include/gtest/gtest_pred_impl.h +gtest/gtest.h +googletest-src/googletest/include/gtest/gtest/gtest.h + +googletest-src/googletest/include/gtest/gtest_prod.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +stdio.h +- + +googletest-src/googletest/include/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/internal/gtest-internal.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +stdlib.h +- +sys/types.h +- +sys/wait.h +- +unistd.h +- +stdexcept +- +ctype.h +- +float.h +- +string.h +- +iomanip +- +limits +- +map +- +set +- +string +- +vector +- +gtest/gtest-message.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-message.h +gtest/internal/gtest-filepath.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +stdlib.h +- +assert.h +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-param-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util.h +ctype.h +- +iterator +- +set +- +utility +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +gtest/internal/gtest-linked_ptr.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-linked_ptr.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +winapifamily.h +- + +googletest-src/googletest/include/gtest/internal/gtest-port.h +ctype.h +- +stddef.h +- +stdlib.h +- +stdio.h +- +string.h +- +sys/types.h +- +sys/stat.h +- +AvailabilityMacros.h +- +TargetConditionals.h +- +string +- +algorithm +- +iostream +- +sstream +- +utility +- +vector +- +gtest/internal/gtest-port-arch.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port-arch.h +gtest/internal/custom/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/custom/gtest-port.h +direct.h +- +io.h +- +unistd.h +- +strings.h +- +android/api-level.h +- +regex.h +- +typeinfo +- +pthread.h +- +time.h +- +tuple +- +gtest/internal/gtest-tuple.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-tuple.h +tuple +- +tr1/tuple +- +tr1/tuple +- +tuple +- +tr1/tuple +- + +googletest-src/googletest/include/gtest/internal/gtest-string.h +mem.h +- +string.h +- +string +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-tuple.h +utility +- + +googletest-src/googletest/include/gtest/internal/gtest-type-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +cxxabi.h +- +acxx_demangle.h +- + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake new file mode 100644 index 0000000..357e119 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake @@ -0,0 +1,26 @@ +# 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/omar/try/build/googletest-src/googlemock/src/gmock_main.cc" "/home/omar/try/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "googletest-src/googlemock/include" + "googletest-src/googlemock" + "googletest-src/googletest/include" + "googletest-src/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/omar/try/build/googletest-build/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake" + "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make new file mode 100644 index 0000000..96e3301 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +# Include any dependencies generated for this target. +include googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make + +# Include the progress variables for this target. +include googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make + +# Include the compile flags for this target's objects. +include googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make + +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/src/gmock_main.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + cd /home/omar/try/build/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /home/omar/try/build/googletest-src/googlemock/src/gmock_main.cc + +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/src/gmock_main.cc.i" + cd /home/omar/try/build/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/try/build/googletest-src/googlemock/src/gmock_main.cc > CMakeFiles/gmock_main.dir/src/gmock_main.cc.i + +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/src/gmock_main.cc.s" + cd /home/omar/try/build/googletest-build/googlemock && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/try/build/googletest-src/googlemock/src/gmock_main.cc -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.s + +# Object files for target gmock_main +gmock_main_OBJECTS = \ +"CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + +# External object files for target gmock_main +gmock_main_EXTERNAL_OBJECTS = + +googletest-build/googlemock/libgmock_main.a: googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +googletest-build/googlemock/libgmock_main.a: googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make +googletest-build/googlemock/libgmock_main.a: googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgmock_main.a" + cd /home/omar/try/build/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean_target.cmake + cd /home/omar/try/build/googletest-build/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +googletest-build/googlemock/CMakeFiles/gmock_main.dir/build: googletest-build/googlemock/libgmock_main.a + +.PHONY : googletest-build/googlemock/CMakeFiles/gmock_main.dir/build + +googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean: + cd /home/omar/try/build/googletest-build/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean.cmake +.PHONY : googletest-build/googlemock/CMakeFiles/gmock_main.dir/clean + +googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try /home/omar/try/build/googletest-src/googlemock /home/omar/try/build /home/omar/try/build/googletest-build/googlemock /home/omar/try/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake new file mode 100644 index 0000000..8e19224 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + "libgmock_main.a" + "libgmock_main.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..06908bb --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgmock_main.a" +) diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.internal b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.internal new file mode 100644 index 0000000..aabf21d --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.internal @@ -0,0 +1,44 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o + /home/omar/try/build/googletest-src/googlemock/src/gmock_main.cc + googletest-src/googlemock/include/gmock/gmock-actions.h + googletest-src/googlemock/include/gmock/gmock-cardinalities.h + googletest-src/googlemock/include/gmock/gmock-generated-actions.h + googletest-src/googlemock/include/gmock/gmock-generated-function-mockers.h + googletest-src/googlemock/include/gmock/gmock-generated-matchers.h + googletest-src/googlemock/include/gmock/gmock-generated-nice-strict.h + googletest-src/googlemock/include/gmock/gmock-matchers.h + googletest-src/googlemock/include/gmock/gmock-more-actions.h + googletest-src/googlemock/include/gmock/gmock-more-matchers.h + googletest-src/googlemock/include/gmock/gmock-spec-builders.h + googletest-src/googlemock/include/gmock/gmock.h + googletest-src/googlemock/include/gmock/internal/custom/gmock-generated-actions.h + googletest-src/googlemock/include/gmock/internal/custom/gmock-matchers.h + googletest-src/googlemock/include/gmock/internal/custom/gmock-port.h + googletest-src/googlemock/include/gmock/internal/gmock-generated-internal-utils.h + googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h + googletest-src/googlemock/include/gmock/internal/gmock-port.h + googletest-src/googletest/include/gtest/gtest-death-test.h + googletest-src/googletest/include/gtest/gtest-message.h + googletest-src/googletest/include/gtest/gtest-param-test.h + googletest-src/googletest/include/gtest/gtest-printers.h + googletest-src/googletest/include/gtest/gtest-test-part.h + googletest-src/googletest/include/gtest/gtest-typed-test.h + googletest-src/googletest/include/gtest/gtest.h + googletest-src/googletest/include/gtest/gtest_pred_impl.h + googletest-src/googletest/include/gtest/gtest_prod.h + googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h + googletest-src/googletest/include/gtest/internal/gtest-filepath.h + googletest-src/googletest/include/gtest/internal/gtest-internal.h + googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h + googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h + googletest-src/googletest/include/gtest/internal/gtest-param-util.h + googletest-src/googletest/include/gtest/internal/gtest-port-arch.h + googletest-src/googletest/include/gtest/internal/gtest-port.h + googletest-src/googletest/include/gtest/internal/gtest-string.h + googletest-src/googletest/include/gtest/internal/gtest-tuple.h + googletest-src/googletest/include/gtest/internal/gtest-type-util.h diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make new file mode 100644 index 0000000..66a5bf1 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/depend.make @@ -0,0 +1,44 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/src/gmock_main.cc +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-actions.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-cardinalities.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-actions.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-function-mockers.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-matchers.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-generated-nice-strict.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-matchers.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-more-actions.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-more-matchers.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock-spec-builders.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/gmock.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/internal/custom/gmock-generated-actions.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/internal/custom/gmock-matchers.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/internal/custom/gmock-port.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/internal/gmock-generated-internal-utils.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googlemock/include/gmock/internal/gmock-port.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest-death-test.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest-message.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest-param-test.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest-printers.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest-test-part.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest-typed-test.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest_pred_impl.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/gtest_prod.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-port.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-filepath.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-internal.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-string.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-tuple.h +googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-type-util.h + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make new file mode 100644 index 0000000..a41d45b --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -Wall -Wshadow -Werror -Wno-error=dangling-else -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -pthread + +CXX_DEFINES = + +CXX_INCLUDES = -isystem /home/omar/try/build/googletest-src/googlemock/include -isystem /home/omar/try/build/googletest-src/googlemock -isystem /home/omar/try/build/googletest-src/googletest/include -isystem /home/omar/try/build/googletest-src/googletest + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt new file mode 100644 index 0000000..50df74b --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libgmock_main.a CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +/usr/bin/ranlib libgmock_main.a diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make new file mode 100644 index 0000000..72bb7dd --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 7 +CMAKE_PROGRESS_2 = 8 + diff --git a/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o new file mode 100644 index 0000000..3a1ad70 Binary files /dev/null and b/build/googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o differ diff --git a/build/googletest-build/googlemock/CMakeFiles/progress.marks b/build/googletest-build/googlemock/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/build/googletest-build/googlemock/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/build/googletest-build/googlemock/CTestTestfile.cmake b/build/googletest-build/googlemock/CTestTestfile.cmake new file mode 100644 index 0000000..68e5bff --- /dev/null +++ b/build/googletest-build/googlemock/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /home/omar/try/build/googletest-src/googlemock +# Build directory: /home/omar/try/build/googletest-build/googlemock +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("gtest") diff --git a/build/googletest-build/googlemock/Makefile b/build/googletest-build/googlemock/Makefile new file mode 100644 index 0000000..da778e0 --- /dev/null +++ b/build/googletest-build/googlemock/Makefile @@ -0,0 +1,288 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# The main all target +all: cmake_check_build_system + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles /home/omar/try/build/googletest-build/googlemock/CMakeFiles/progress.marks + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: googletest-build/googlemock/CMakeFiles/gmock_main.dir/rule + +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make googletest-build/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +# Convenience name for target. +googletest-build/googlemock/CMakeFiles/gmock.dir/rule: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : googletest-build/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: googletest-build/googlemock/CMakeFiles/gmock.dir/rule + +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock.dir/build.make googletest-build/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +src/gmock-all.o: src/gmock-all.cc.o + +.PHONY : src/gmock-all.o + +# target to build an object file +src/gmock-all.cc.o: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock.dir/build.make googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +.PHONY : src/gmock-all.cc.o + +src/gmock-all.i: src/gmock-all.cc.i + +.PHONY : src/gmock-all.i + +# target to preprocess a source file +src/gmock-all.cc.i: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock.dir/build.make googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i +.PHONY : src/gmock-all.cc.i + +src/gmock-all.s: src/gmock-all.cc.s + +.PHONY : src/gmock-all.s + +# target to generate assembly for a file +src/gmock-all.cc.s: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock.dir/build.make googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s +.PHONY : src/gmock-all.cc.s + +src/gmock_main.o: src/gmock_main.cc.o + +.PHONY : src/gmock_main.o + +# target to build an object file +src/gmock_main.cc.o: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +.PHONY : src/gmock_main.cc.o + +src/gmock_main.i: src/gmock_main.cc.i + +.PHONY : src/gmock_main.i + +# target to preprocess a source file +src/gmock_main.cc.i: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i +.PHONY : src/gmock_main.cc.i + +src/gmock_main.s: src/gmock_main.cc.s + +.PHONY : src/gmock_main.s + +# target to generate assembly for a file +src/gmock_main.cc.s: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/CMakeFiles/gmock_main.dir/build.make googletest-build/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s +.PHONY : src/gmock_main.cc.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... install/local" + @echo "... install" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... test" + @echo "... gmock_main" + @echo "... gmock" + @echo "... src/gmock-all.o" + @echo "... src/gmock-all.i" + @echo "... src/gmock-all.s" + @echo "... src/gmock_main.o" + @echo "... src/gmock_main.i" + @echo "... src/gmock_main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/googletest-build/googlemock/cmake_install.cmake b/build/googletest-build/googlemock/cmake_install.cmake new file mode 100644 index 0000000..6ecb092 --- /dev/null +++ b/build/googletest-build/googlemock/cmake_install.cmake @@ -0,0 +1,65 @@ +# Install script for directory: /home/omar/try/build/googletest-src/googlemock + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/home/omar/try/build/googletest-src/googlemock/include/") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/omar/try/build/googletest-build/googlemock/libgmock.a") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/omar/try/build/googletest-build/googlemock/libgmock_main.a") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/omar/try/build/googletest-build/googlemock/gtest/generated/gmock.pc") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/omar/try/build/googletest-build/googlemock/gtest/generated/gmock_main.pc") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/omar/try/build/googletest-build/googlemock/gtest/cmake_install.cmake") + +endif() + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..8a1fca2 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/omar/try") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/omar/try/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/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets-noconfig.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets-noconfig.cmake new file mode 100644 index 0000000..383841e --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets-noconfig.cmake @@ -0,0 +1,53 @@ +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "GTest::gtest" for configuration "" +set_property(TARGET GTest::gtest APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gtest PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgtest.a" + ) + +list(APPEND _IMPORT_CHECK_TARGETS GTest::gtest ) +list(APPEND _IMPORT_CHECK_FILES_FOR_GTest::gtest "${_IMPORT_PREFIX}/lib/libgtest.a" ) + +# Import target "GTest::gtest_main" for configuration "" +set_property(TARGET GTest::gtest_main APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gtest_main PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads;GTest::gtest" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgtest_main.a" + ) + +list(APPEND _IMPORT_CHECK_TARGETS GTest::gtest_main ) +list(APPEND _IMPORT_CHECK_FILES_FOR_GTest::gtest_main "${_IMPORT_PREFIX}/lib/libgtest_main.a" ) + +# Import target "GTest::gmock" for configuration "" +set_property(TARGET GTest::gmock APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gmock PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads;GTest::gtest" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgmock.a" + ) + +list(APPEND _IMPORT_CHECK_TARGETS GTest::gmock ) +list(APPEND _IMPORT_CHECK_FILES_FOR_GTest::gmock "${_IMPORT_PREFIX}/lib/libgmock.a" ) + +# Import target "GTest::gmock_main" for configuration "" +set_property(TARGET GTest::gmock_main APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gmock_main PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads;GTest::gmock" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgmock_main.a" + ) + +list(APPEND _IMPORT_CHECK_TARGETS GTest::gmock_main ) +list(APPEND _IMPORT_CHECK_FILES_FOR_GTest::gmock_main "${_IMPORT_PREFIX}/lib/libgmock_main.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets.cmake new file mode 100644 index 0000000..b5e3330 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets.cmake @@ -0,0 +1,119 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5) + message(FATAL_ERROR "CMake >= 2.6.0 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.6) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_targetsDefined) +set(_targetsNotDefined) +set(_expectedTargets) +foreach(_expectedTarget GTest::gtest GTest::gtest_main GTest::gmock GTest::gmock_main) + list(APPEND _expectedTargets ${_expectedTarget}) + if(NOT TARGET ${_expectedTarget}) + list(APPEND _targetsNotDefined ${_expectedTarget}) + endif() + if(TARGET ${_expectedTarget}) + list(APPEND _targetsDefined ${_expectedTarget}) + endif() +endforeach() +if("${_targetsDefined}" STREQUAL "${_expectedTargets}") + unset(_targetsDefined) + unset(_targetsNotDefined) + unset(_expectedTargets) + set(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT "${_targetsDefined}" STREQUAL "") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n") +endif() +unset(_targetsDefined) +unset(_targetsNotDefined) +unset(_expectedTargets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target GTest::gtest +add_library(GTest::gtest STATIC IMPORTED) + +set_target_properties(GTest::gtest PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gtest_main +add_library(GTest::gtest_main STATIC IMPORTED) + +set_target_properties(GTest::gtest_main PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gmock +add_library(GTest::gmock STATIC IMPORTED) + +set_target_properties(GTest::gmock PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gmock_main +add_library(GTest::gmock_main STATIC IMPORTED) + +set_target_properties(GTest::gmock_main PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB CONFIG_FILES "${_DIR}/GTestTargets-*.cmake") +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(target ${_IMPORT_CHECK_TARGETS} ) + foreach(file ${_IMPORT_CHECK_FILES_FOR_${target}} ) + if(NOT EXISTS "${file}" ) + message(FATAL_ERROR "The imported target \"${target}\" references the file + \"${file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + unset(_IMPORT_CHECK_FILES_FOR_${target}) +endforeach() +unset(_IMPORT_CHECK_TARGETS) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/CXX.includecache b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/CXX.includecache new file mode 100644 index 0000000..fbd9a56 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/CXX.includecache @@ -0,0 +1,594 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/try/build/googletest-src/googletest/src/gtest-all.cc +gtest/gtest.h +/home/omar/try/build/googletest-src/googletest/src/gtest/gtest.h +src/gtest.cc +/home/omar/try/build/googletest-src/googletest/src/src/gtest.cc +src/gtest-death-test.cc +/home/omar/try/build/googletest-src/googletest/src/src/gtest-death-test.cc +src/gtest-filepath.cc +/home/omar/try/build/googletest-src/googletest/src/src/gtest-filepath.cc +src/gtest-port.cc +/home/omar/try/build/googletest-src/googletest/src/src/gtest-port.cc +src/gtest-printers.cc +/home/omar/try/build/googletest-src/googletest/src/src/gtest-printers.cc +src/gtest-test-part.cc +/home/omar/try/build/googletest-src/googletest/src/src/gtest-test-part.cc +src/gtest-typed-test.cc +/home/omar/try/build/googletest-src/googletest/src/src/gtest-typed-test.cc + +googletest-src/googletest/include/gtest/gtest-death-test.h +gtest/internal/gtest-death-test-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-death-test-internal.h + +googletest-src/googletest/include/gtest/gtest-message.h +limits +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/gtest-param-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +utility +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util.h +gtest/internal/gtest-param-util-generated.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util-generated.h + +googletest-src/googletest/include/gtest/gtest-printers.h +ostream +- +sstream +- +string +- +utility +- +vector +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +tuple +- +absl/strings/string_view.h +googletest-src/googletest/include/gtest/absl/strings/string_view.h +absl/types/optional.h +googletest-src/googletest/include/gtest/absl/types/optional.h +absl/types/variant.h +googletest-src/googletest/include/gtest/absl/types/variant.h +gtest/internal/custom/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/gtest-spi.h +gtest/gtest.h +googletest-src/googletest/include/gtest/gtest/gtest.h + +googletest-src/googletest/include/gtest/gtest-test-part.h +iosfwd +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/gtest-typed-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/gtest.h +limits +- +ostream +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h +gtest/gtest-death-test.h +googletest-src/googletest/include/gtest/gtest/gtest-death-test.h +gtest/gtest-message.h +googletest-src/googletest/include/gtest/gtest/gtest-message.h +gtest/gtest-param-test.h +googletest-src/googletest/include/gtest/gtest/gtest-param-test.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/gtest-printers.h +gtest/gtest_prod.h +googletest-src/googletest/include/gtest/gtest/gtest_prod.h +gtest/gtest-test-part.h +googletest-src/googletest/include/gtest/gtest/gtest-test-part.h +gtest/gtest-typed-test.h +googletest-src/googletest/include/gtest/gtest/gtest-typed-test.h +gtest/gtest_pred_impl.h +googletest-src/googletest/include/gtest/gtest/gtest_pred_impl.h + +googletest-src/googletest/include/gtest/gtest_pred_impl.h +gtest/gtest.h +googletest-src/googletest/include/gtest/gtest/gtest.h + +googletest-src/googletest/include/gtest/gtest_prod.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/custom/gtest.h + +googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +stdio.h +- + +googletest-src/googletest/include/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/internal/gtest-internal.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +stdlib.h +- +sys/types.h +- +sys/wait.h +- +unistd.h +- +stdexcept +- +ctype.h +- +float.h +- +string.h +- +iomanip +- +limits +- +map +- +set +- +string +- +vector +- +gtest/gtest-message.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-message.h +gtest/internal/gtest-filepath.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +stdlib.h +- +assert.h +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-param-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util.h +ctype.h +- +iterator +- +set +- +utility +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +gtest/internal/gtest-linked_ptr.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-linked_ptr.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +winapifamily.h +- + +googletest-src/googletest/include/gtest/internal/gtest-port.h +ctype.h +- +stddef.h +- +stdlib.h +- +stdio.h +- +string.h +- +sys/types.h +- +sys/stat.h +- +AvailabilityMacros.h +- +TargetConditionals.h +- +string +- +algorithm +- +iostream +- +sstream +- +utility +- +vector +- +gtest/internal/gtest-port-arch.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port-arch.h +gtest/internal/custom/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/custom/gtest-port.h +direct.h +- +io.h +- +unistd.h +- +strings.h +- +android/api-level.h +- +regex.h +- +typeinfo +- +pthread.h +- +time.h +- +tuple +- +gtest/internal/gtest-tuple.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-tuple.h +tuple +- +tr1/tuple +- +tr1/tuple +- +tuple +- +tr1/tuple +- + +googletest-src/googletest/include/gtest/internal/gtest-string.h +mem.h +- +string.h +- +string +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-tuple.h +utility +- + +googletest-src/googletest/include/gtest/internal/gtest-type-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +cxxabi.h +- +acxx_demangle.h +- + +googletest-src/googletest/src/gtest-death-test.cc +gtest/gtest-death-test.h +googletest-src/googletest/src/gtest/gtest-death-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/src/gtest/internal/gtest-port.h +gtest/internal/custom/gtest.h +googletest-src/googletest/src/gtest/internal/custom/gtest.h +crt_externs.h +- +errno.h +- +fcntl.h +- +limits.h +- +signal.h +- +stdarg.h +- +windows.h +- +sys/mman.h +- +sys/wait.h +- +spawn.h +- +lib/fdio/io.h +- +lib/fdio/spawn.h +- +zircon/processargs.h +- +zircon/syscalls.h +- +zircon/syscalls/port.h +- +gtest/gtest-message.h +googletest-src/googletest/src/gtest/gtest-message.h +gtest/internal/gtest-string.h +googletest-src/googletest/src/gtest/internal/gtest-string.h +src/gtest-internal-inl.h +googletest-src/googletest/src/src/gtest-internal-inl.h + +googletest-src/googletest/src/gtest-filepath.cc +gtest/internal/gtest-filepath.h +googletest-src/googletest/src/gtest/internal/gtest-filepath.h +stdlib.h +- +gtest/internal/gtest-port.h +googletest-src/googletest/src/gtest/internal/gtest-port.h +gtest/gtest-message.h +googletest-src/googletest/src/gtest/gtest-message.h +windows.h +- +direct.h +- +io.h +- +sys/syslimits.h +- +limits.h +- +climits +- +gtest/internal/gtest-string.h +googletest-src/googletest/src/gtest/internal/gtest-string.h + +googletest-src/googletest/src/gtest-internal-inl.h +errno.h +- +stddef.h +- +stdlib.h +- +string.h +- +algorithm +- +string +- +vector +- +gtest/internal/gtest-port.h +googletest-src/googletest/src/gtest/internal/gtest-port.h +arpa/inet.h +- +netdb.h +- +windows.h +- +gtest/gtest.h +googletest-src/googletest/src/gtest/gtest.h +gtest/gtest-spi.h +googletest-src/googletest/src/gtest/gtest-spi.h + +googletest-src/googletest/src/gtest-port.cc +gtest/internal/gtest-port.h +googletest-src/googletest/src/gtest/internal/gtest-port.h +limits.h +- +stdlib.h +- +stdio.h +- +string.h +- +fstream +- +windows.h +- +io.h +- +sys/stat.h +- +map +- +unistd.h +- +mach/mach_init.h +- +mach/task.h +- +mach/vm_map.h +- +devctl.h +- +fcntl.h +- +sys/procfs.h +- +procinfo.h +- +sys/types.h +- +zircon/process.h +- +zircon/syscalls.h +- +gtest/gtest-spi.h +googletest-src/googletest/src/gtest/gtest-spi.h +gtest/gtest-message.h +googletest-src/googletest/src/gtest/gtest-message.h +gtest/internal/gtest-internal.h +googletest-src/googletest/src/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/src/gtest/internal/gtest-string.h +src/gtest-internal-inl.h +googletest-src/googletest/src/src/gtest-internal-inl.h + +googletest-src/googletest/src/gtest-printers.cc +gtest/gtest-printers.h +googletest-src/googletest/src/gtest/gtest-printers.h +stdio.h +- +cctype +- +cwchar +- +ostream +- +string +- +gtest/internal/gtest-port.h +googletest-src/googletest/src/gtest/internal/gtest-port.h +src/gtest-internal-inl.h +googletest-src/googletest/src/src/gtest-internal-inl.h + +googletest-src/googletest/src/gtest-test-part.cc +gtest/gtest-test-part.h +googletest-src/googletest/src/gtest/gtest-test-part.h +src/gtest-internal-inl.h +googletest-src/googletest/src/src/gtest-internal-inl.h + +googletest-src/googletest/src/gtest-typed-test.cc +gtest/gtest-typed-test.h +googletest-src/googletest/src/gtest/gtest-typed-test.h +gtest/gtest.h +googletest-src/googletest/src/gtest/gtest.h + +googletest-src/googletest/src/gtest.cc +gtest/gtest.h +googletest-src/googletest/src/gtest/gtest.h +gtest/internal/custom/gtest.h +googletest-src/googletest/src/gtest/internal/custom/gtest.h +gtest/gtest-spi.h +googletest-src/googletest/src/gtest/gtest-spi.h +ctype.h +- +math.h +- +stdarg.h +- +stdio.h +- +stdlib.h +- +time.h +- +wchar.h +- +wctype.h +- +algorithm +- +iomanip +- +limits +- +list +- +map +- +ostream +- +sstream +- +vector +- +fcntl.h +- +limits.h +- +sched.h +- +strings.h +- +sys/mman.h +- +sys/time.h +- +unistd.h +- +string +- +sys/time.h +- +sys/time.h +- +strings.h +- +windows.h +- +io.h +- +sys/timeb.h +- +sys/types.h +- +sys/stat.h +- +sys/time.h +- +windows.h +- +sys/time.h +- +unistd.h +- +stdexcept +- +arpa/inet.h +- +netdb.h +- +sys/socket.h +- +sys/types.h +- +src/gtest-internal-inl.h +googletest-src/googletest/src/src/gtest-internal-inl.h +crt_externs.h +- +absl/debugging/failure_signal_handler.h +googletest-src/googletest/src/absl/debugging/failure_signal_handler.h +absl/debugging/stacktrace.h +googletest-src/googletest/src/absl/debugging/stacktrace.h +absl/debugging/symbolize.h +googletest-src/googletest/src/absl/debugging/symbolize.h +absl/strings/str_cat.h +googletest-src/googletest/src/absl/strings/str_cat.h + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake new file mode 100644 index 0000000..3e55497 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake @@ -0,0 +1,22 @@ +# 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/omar/try/build/googletest-src/googletest/src/gtest-all.cc" "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "googletest-src/googletest/include" + "googletest-src/googletest" + ) + +# 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/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make new file mode 100644 index 0000000..aeb1a76 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +# Include any dependencies generated for this target. +include googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend.make + +# Include the progress variables for this target. +include googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/progress.make + +# Include the compile flags for this target's objects. +include googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/flags.make + +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/flags.make +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-all.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + cd /home/omar/try/build/googletest-build/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /home/omar/try/build/googletest-src/googletest/src/gtest-all.cc + +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest.dir/src/gtest-all.cc.i" + cd /home/omar/try/build/googletest-build/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/try/build/googletest-src/googletest/src/gtest-all.cc > CMakeFiles/gtest.dir/src/gtest-all.cc.i + +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest.dir/src/gtest-all.cc.s" + cd /home/omar/try/build/googletest-build/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/try/build/googletest-src/googletest/src/gtest-all.cc -o CMakeFiles/gtest.dir/src/gtest-all.cc.s + +# Object files for target gtest +gtest_OBJECTS = \ +"CMakeFiles/gtest.dir/src/gtest-all.cc.o" + +# External object files for target gtest +gtest_EXTERNAL_OBJECTS = + +googletest-build/googlemock/gtest/libgtest.a: googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +googletest-build/googlemock/gtest/libgtest.a: googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make +googletest-build/googlemock/gtest/libgtest.a: googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgtest.a" + cd /home/omar/try/build/googletest-build/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean_target.cmake + cd /home/omar/try/build/googletest-build/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build: googletest-build/googlemock/gtest/libgtest.a + +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build + +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/clean: + cd /home/omar/try/build/googletest-build/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean.cmake +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/clean + +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try /home/omar/try/build/googletest-src/googletest /home/omar/try/build /home/omar/try/build/googletest-build/googlemock/gtest /home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake new file mode 100644 index 0000000..f62a4f8 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest.dir/src/gtest-all.cc.o" + "libgtest.a" + "libgtest.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean_target.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..0668ce3 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgtest.a" +) diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend.internal b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend.internal new file mode 100644 index 0000000..cd0c63d --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend.internal @@ -0,0 +1,37 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o + /home/omar/try/build/googletest-src/googletest/src/gtest-all.cc + googletest-src/googletest/include/gtest/gtest-death-test.h + googletest-src/googletest/include/gtest/gtest-message.h + googletest-src/googletest/include/gtest/gtest-param-test.h + googletest-src/googletest/include/gtest/gtest-printers.h + googletest-src/googletest/include/gtest/gtest-spi.h + googletest-src/googletest/include/gtest/gtest-test-part.h + googletest-src/googletest/include/gtest/gtest-typed-test.h + googletest-src/googletest/include/gtest/gtest.h + googletest-src/googletest/include/gtest/gtest_pred_impl.h + googletest-src/googletest/include/gtest/gtest_prod.h + googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + googletest-src/googletest/include/gtest/internal/custom/gtest.h + googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h + googletest-src/googletest/include/gtest/internal/gtest-filepath.h + googletest-src/googletest/include/gtest/internal/gtest-internal.h + googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h + googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h + googletest-src/googletest/include/gtest/internal/gtest-param-util.h + googletest-src/googletest/include/gtest/internal/gtest-port-arch.h + googletest-src/googletest/include/gtest/internal/gtest-port.h + googletest-src/googletest/include/gtest/internal/gtest-string.h + googletest-src/googletest/include/gtest/internal/gtest-tuple.h + googletest-src/googletest/include/gtest/internal/gtest-type-util.h + googletest-src/googletest/src/gtest-death-test.cc + googletest-src/googletest/src/gtest-filepath.cc + googletest-src/googletest/src/gtest-internal-inl.h + googletest-src/googletest/src/gtest-port.cc + googletest-src/googletest/src/gtest-printers.cc + googletest-src/googletest/src/gtest-test-part.cc + googletest-src/googletest/src/gtest-typed-test.cc + googletest-src/googletest/src/gtest.cc diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend.make new file mode 100644 index 0000000..691a343 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/depend.make @@ -0,0 +1,37 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-all.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest-death-test.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest-message.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest-param-test.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest-printers.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest-spi.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest-test-part.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest-typed-test.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest_pred_impl.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/gtest_prod.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-port.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-filepath.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-internal.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-string.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-tuple.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/include/gtest/internal/gtest-type-util.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-death-test.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-filepath.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-internal-inl.h +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-port.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-printers.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-test-part.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest-typed-test.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: googletest-src/googletest/src/gtest.cc + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/flags.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/flags.make new file mode 100644 index 0000000..19506ba --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -Wall -Wshadow -Werror -Wno-error=dangling-else -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -pthread + +CXX_DEFINES = + +CXX_INCLUDES = -I/home/omar/try/build/googletest-src/googletest/include -I/home/omar/try/build/googletest-src/googletest + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/link.txt b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/link.txt new file mode 100644 index 0000000..29f1bb7 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libgtest.a CMakeFiles/gtest.dir/src/gtest-all.cc.o +/usr/bin/ranlib libgtest.a diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/progress.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/progress.make new file mode 100644 index 0000000..b700c2c --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = 10 + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o new file mode 100644 index 0000000..127ea57 Binary files /dev/null and b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o differ diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/CXX.includecache b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/CXX.includecache new file mode 100644 index 0000000..346166a --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/CXX.includecache @@ -0,0 +1,294 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/omar/try/build/googletest-src/googletest/src/gtest_main.cc +stdio.h +- +gtest/gtest.h +/home/omar/try/build/googletest-src/googletest/src/gtest/gtest.h + +googletest-src/googletest/include/gtest/gtest-death-test.h +gtest/internal/gtest-death-test-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-death-test-internal.h + +googletest-src/googletest/include/gtest/gtest-message.h +limits +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/gtest-param-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +utility +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util.h +gtest/internal/gtest-param-util-generated.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-param-util-generated.h + +googletest-src/googletest/include/gtest/gtest-printers.h +ostream +- +sstream +- +string +- +utility +- +vector +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +tuple +- +absl/strings/string_view.h +googletest-src/googletest/include/gtest/absl/strings/string_view.h +absl/types/optional.h +googletest-src/googletest/include/gtest/absl/types/optional.h +absl/types/variant.h +googletest-src/googletest/include/gtest/absl/types/variant.h +gtest/internal/custom/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/gtest-test-part.h +iosfwd +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/gtest-typed-test.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-port.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/gtest.h +limits +- +ostream +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-internal.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/gtest/internal/gtest-string.h +gtest/gtest-death-test.h +googletest-src/googletest/include/gtest/gtest/gtest-death-test.h +gtest/gtest-message.h +googletest-src/googletest/include/gtest/gtest/gtest-message.h +gtest/gtest-param-test.h +googletest-src/googletest/include/gtest/gtest/gtest-param-test.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/gtest/gtest-printers.h +gtest/gtest_prod.h +googletest-src/googletest/include/gtest/gtest/gtest_prod.h +gtest/gtest-test-part.h +googletest-src/googletest/include/gtest/gtest/gtest-test-part.h +gtest/gtest-typed-test.h +googletest-src/googletest/include/gtest/gtest/gtest-typed-test.h +gtest/gtest_pred_impl.h +googletest-src/googletest/include/gtest/gtest/gtest_pred_impl.h + +googletest-src/googletest/include/gtest/gtest_pred_impl.h +gtest/gtest.h +googletest-src/googletest/include/gtest/gtest/gtest.h + +googletest-src/googletest/include/gtest/gtest_prod.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + +googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +stdio.h +- + +googletest-src/googletest/include/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h + +googletest-src/googletest/include/gtest/internal/gtest-internal.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +stdlib.h +- +sys/types.h +- +sys/wait.h +- +unistd.h +- +stdexcept +- +ctype.h +- +float.h +- +string.h +- +iomanip +- +limits +- +map +- +set +- +string +- +vector +- +gtest/gtest-message.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-message.h +gtest/internal/gtest-filepath.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-filepath.h +gtest/internal/gtest-string.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-string.h +gtest/internal/gtest-type-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-type-util.h + +googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +stdlib.h +- +assert.h +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +gtest/internal/gtest-param-util.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-param-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-param-util.h +ctype.h +- +iterator +- +set +- +utility +- +vector +- +gtest/internal/gtest-internal.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-internal.h +gtest/internal/gtest-linked_ptr.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-linked_ptr.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +gtest/gtest-printers.h +googletest-src/googletest/include/gtest/internal/gtest/gtest-printers.h + +googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +winapifamily.h +- + +googletest-src/googletest/include/gtest/internal/gtest-port.h +ctype.h +- +stddef.h +- +stdlib.h +- +stdio.h +- +string.h +- +sys/types.h +- +sys/stat.h +- +AvailabilityMacros.h +- +TargetConditionals.h +- +string +- +algorithm +- +iostream +- +sstream +- +utility +- +vector +- +gtest/internal/gtest-port-arch.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port-arch.h +gtest/internal/custom/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/custom/gtest-port.h +direct.h +- +io.h +- +unistd.h +- +strings.h +- +android/api-level.h +- +regex.h +- +typeinfo +- +pthread.h +- +time.h +- +tuple +- +gtest/internal/gtest-tuple.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-tuple.h +tuple +- +tr1/tuple +- +tr1/tuple +- +tuple +- +tr1/tuple +- + +googletest-src/googletest/include/gtest/internal/gtest-string.h +mem.h +- +string.h +- +string +- +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h + +googletest-src/googletest/include/gtest/internal/gtest-tuple.h +utility +- + +googletest-src/googletest/include/gtest/internal/gtest-type-util.h +gtest/internal/gtest-port.h +googletest-src/googletest/include/gtest/internal/gtest/internal/gtest-port.h +cxxabi.h +- +acxx_demangle.h +- + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake new file mode 100644 index 0000000..3c0da9a --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.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/omar/try/build/googletest-src/googletest/src/gtest_main.cc" "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "googletest-src/googletest/include" + "googletest-src/googletest" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make new file mode 100644 index 0000000..593ef14 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make @@ -0,0 +1,99 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +# Include any dependencies generated for this target. +include googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make + +# Include the progress variables for this target. +include googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make + +# Include the compile flags for this target's objects. +include googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make + +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/src/gtest_main.cc + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + cd /home/omar/try/build/googletest-build/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /home/omar/try/build/googletest-src/googletest/src/gtest_main.cc + +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest_main.dir/src/gtest_main.cc.i" + cd /home/omar/try/build/googletest-build/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/try/build/googletest-src/googletest/src/gtest_main.cc > CMakeFiles/gtest_main.dir/src/gtest_main.cc.i + +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest_main.dir/src/gtest_main.cc.s" + cd /home/omar/try/build/googletest-build/googlemock/gtest && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/try/build/googletest-src/googletest/src/gtest_main.cc -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.s + +# Object files for target gtest_main +gtest_main_OBJECTS = \ +"CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + +# External object files for target gtest_main +gtest_main_EXTERNAL_OBJECTS = + +googletest-build/googlemock/gtest/libgtest_main.a: googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +googletest-build/googlemock/gtest/libgtest_main.a: googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make +googletest-build/googlemock/gtest/libgtest_main.a: googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgtest_main.a" + cd /home/omar/try/build/googletest-build/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean_target.cmake + cd /home/omar/try/build/googletest-build/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build: googletest-build/googlemock/gtest/libgtest_main.a + +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build + +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/clean: + cd /home/omar/try/build/googletest-build/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean.cmake +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try /home/omar/try/build/googletest-src/googletest /home/omar/try/build /home/omar/try/build/googletest-build/googlemock/gtest /home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake new file mode 100644 index 0000000..7e50982 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + "libgtest_main.a" + "libgtest_main.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..0114a46 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgtest_main.a" +) diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.internal b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.internal new file mode 100644 index 0000000..f332ae6 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.internal @@ -0,0 +1,27 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o + /home/omar/try/build/googletest-src/googletest/src/gtest_main.cc + googletest-src/googletest/include/gtest/gtest-death-test.h + googletest-src/googletest/include/gtest/gtest-message.h + googletest-src/googletest/include/gtest/gtest-param-test.h + googletest-src/googletest/include/gtest/gtest-printers.h + googletest-src/googletest/include/gtest/gtest-test-part.h + googletest-src/googletest/include/gtest/gtest-typed-test.h + googletest-src/googletest/include/gtest/gtest.h + googletest-src/googletest/include/gtest/gtest_pred_impl.h + googletest-src/googletest/include/gtest/gtest_prod.h + googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h + googletest-src/googletest/include/gtest/internal/gtest-filepath.h + googletest-src/googletest/include/gtest/internal/gtest-internal.h + googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h + googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h + googletest-src/googletest/include/gtest/internal/gtest-param-util.h + googletest-src/googletest/include/gtest/internal/gtest-port-arch.h + googletest-src/googletest/include/gtest/internal/gtest-port.h + googletest-src/googletest/include/gtest/internal/gtest-string.h + googletest-src/googletest/include/gtest/internal/gtest-tuple.h + googletest-src/googletest/include/gtest/internal/gtest-type-util.h diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make new file mode 100644 index 0000000..3fa98e8 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make @@ -0,0 +1,27 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/src/gtest_main.cc +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest-death-test.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest-message.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest-param-test.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest-printers.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest-test-part.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest-typed-test.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest_pred_impl.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/gtest_prod.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-port.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-filepath.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-internal.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-param-util.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-port.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-string.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-tuple.h +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: googletest-src/googletest/include/gtest/internal/gtest-type-util.h + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make new file mode 100644 index 0000000..6febd7e --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -Wall -Wshadow -Werror -Wno-error=dangling-else -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -pthread + +CXX_DEFINES = + +CXX_INCLUDES = -isystem /home/omar/try/build/googletest-src/googletest/include -isystem /home/omar/try/build/googletest-src/googletest + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt new file mode 100644 index 0000000..ffacfcb --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar qc libgtest_main.a CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +/usr/bin/ranlib libgtest_main.a diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make new file mode 100644 index 0000000..596289c --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 11 +CMAKE_PROGRESS_2 = 12 + diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o new file mode 100644 index 0000000..30ae578 Binary files /dev/null and b/build/googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o differ diff --git a/build/googletest-build/googlemock/gtest/CMakeFiles/progress.marks b/build/googletest-build/googlemock/gtest/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/build/googletest-build/googlemock/gtest/CTestTestfile.cmake b/build/googletest-build/googlemock/gtest/CTestTestfile.cmake new file mode 100644 index 0000000..c22fdac --- /dev/null +++ b/build/googletest-build/googlemock/gtest/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /home/omar/try/build/googletest-src/googletest +# Build directory: /home/omar/try/build/googletest-build/googlemock/gtest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/build/googletest-build/googlemock/gtest/Makefile b/build/googletest-build/googlemock/gtest/Makefile new file mode 100644 index 0000000..d7e30ce --- /dev/null +++ b/build/googletest-build/googlemock/gtest/Makefile @@ -0,0 +1,288 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +.PHONY : list_install_components/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# The main all target +all: cmake_check_build_system + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles /home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/progress.marks + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/gtest/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/gtest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/gtest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/gtest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/rule: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/rule +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +# Convenience name for target. +googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/rule: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/rule +.PHONY : googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/rule + +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +src/gtest-all.o: src/gtest-all.cc.o + +.PHONY : src/gtest-all.o + +# target to build an object file +src/gtest-all.cc.o: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +.PHONY : src/gtest-all.cc.o + +src/gtest-all.i: src/gtest-all.cc.i + +.PHONY : src/gtest-all.i + +# target to preprocess a source file +src/gtest-all.cc.i: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i +.PHONY : src/gtest-all.cc.i + +src/gtest-all.s: src/gtest-all.cc.s + +.PHONY : src/gtest-all.s + +# target to generate assembly for a file +src/gtest-all.cc.s: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s +.PHONY : src/gtest-all.cc.s + +src/gtest_main.o: src/gtest_main.cc.o + +.PHONY : src/gtest_main.o + +# target to build an object file +src/gtest_main.cc.o: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +.PHONY : src/gtest_main.cc.o + +src/gtest_main.i: src/gtest_main.cc.i + +.PHONY : src/gtest_main.i + +# target to preprocess a source file +src/gtest_main.cc.i: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i +.PHONY : src/gtest_main.cc.i + +src/gtest_main.s: src/gtest_main.cc.s + +.PHONY : src/gtest_main.s + +# target to generate assembly for a file +src/gtest_main.cc.s: + cd /home/omar/try/build && $(MAKE) -f googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make googletest-build/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s +.PHONY : src/gtest_main.cc.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... install/strip" + @echo "... install/local" + @echo "... install" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... test" + @echo "... gtest_main" + @echo "... gtest" + @echo "... src/gtest-all.o" + @echo "... src/gtest-all.i" + @echo "... src/gtest-all.s" + @echo "... src/gtest_main.o" + @echo "... src/gtest_main.i" + @echo "... src/gtest_main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/googletest-build/googlemock/gtest/cmake_install.cmake b/build/googletest-build/googlemock/gtest/cmake_install.cmake new file mode 100644 index 0000000..bad50aa --- /dev/null +++ b/build/googletest-build/googlemock/gtest/cmake_install.cmake @@ -0,0 +1,85 @@ +# Install script for directory: /home/omar/try/build/googletest-src/googletest + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake") + file(DIFFERENT EXPORT_FILE_CHANGED FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake" + "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets.cmake") + if(EXPORT_FILE_CHANGED) + file(GLOB OLD_CONFIG_FILES "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets-*.cmake") + if(OLD_CONFIG_FILES) + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake\" will be replaced. Removing files [${OLD_CONFIG_FILES}].") + file(REMOVE ${OLD_CONFIG_FILES}) + endif() + endif() + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets.cmake") + if("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^()$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES "/home/omar/try/build/googletest-build/googlemock/gtest/CMakeFiles/Export/lib/cmake/GTest/GTestTargets-noconfig.cmake") + endif() +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES + "/home/omar/try/build/googletest-build/googlemock/gtest/generated/GTestConfigVersion.cmake" + "/home/omar/try/build/googletest-build/googlemock/gtest/generated/GTestConfig.cmake" + ) +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/home/omar/try/build/googletest-src/googletest/include/") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/omar/try/build/googletest-build/googlemock/gtest/libgtest.a") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/omar/try/build/googletest-build/googlemock/gtest/libgtest_main.a") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/omar/try/build/googletest-build/googlemock/gtest/generated/gtest.pc") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/omar/try/build/googletest-build/googlemock/gtest/generated/gtest_main.pc") +endif() + diff --git a/build/googletest-build/googlemock/gtest/generated/GTestConfig.cmake b/build/googletest-build/googlemock/gtest/generated/GTestConfig.cmake new file mode 100644 index 0000000..0ee9ec8 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/generated/GTestConfig.cmake @@ -0,0 +1,33 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was Config.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### +include(CMakeFindDependencyMacro) +if (ON) + set(THREADS_PREFER_PTHREAD_FLAG ON) + find_dependency(Threads) +endif() + +include("${CMAKE_CURRENT_LIST_DIR}/GTestTargets.cmake") +check_required_components("") diff --git a/build/googletest-build/googlemock/gtest/generated/GTestConfigVersion.cmake b/build/googletest-build/googlemock/gtest/generated/GTestConfigVersion.cmake new file mode 100644 index 0000000..b12397d --- /dev/null +++ b/build/googletest-build/googlemock/gtest/generated/GTestConfigVersion.cmake @@ -0,0 +1,37 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. +# The variable CVF_VERSION must be set before calling configure_file(). + +set(PACKAGE_VERSION "1.9.0") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() + + +# if the installed project requested no architecture check, don't perform the check +if("FALSE") + return() +endif() + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/build/googletest-build/googlemock/gtest/generated/gmock.pc b/build/googletest-build/googlemock/gtest/generated/gmock.pc new file mode 100644 index 0000000..d4242cf --- /dev/null +++ b/build/googletest-build/googlemock/gtest/generated/gmock.pc @@ -0,0 +1,9 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gmock +Description: GoogleMock (without main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Libs: -L${libdir} -lgmock -pthread +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 -pthread diff --git a/build/googletest-build/googlemock/gtest/generated/gmock_main.pc b/build/googletest-build/googlemock/gtest/generated/gmock_main.pc new file mode 100644 index 0000000..2da4fbc --- /dev/null +++ b/build/googletest-build/googlemock/gtest/generated/gmock_main.pc @@ -0,0 +1,9 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gmock_main +Description: GoogleMock (with main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Libs: -L${libdir} -lgmock_main -pthread +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 -pthread diff --git a/build/googletest-build/googlemock/gtest/generated/gtest.pc b/build/googletest-build/googlemock/gtest/generated/gtest.pc new file mode 100644 index 0000000..a9931b8 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/generated/gtest.pc @@ -0,0 +1,9 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gtest +Description: GoogleTest (without main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Libs: -L${libdir} -lgtest -pthread +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 -pthread diff --git a/build/googletest-build/googlemock/gtest/generated/gtest_main.pc b/build/googletest-build/googlemock/gtest/generated/gtest_main.pc new file mode 100644 index 0000000..57948c7 --- /dev/null +++ b/build/googletest-build/googlemock/gtest/generated/gtest_main.pc @@ -0,0 +1,10 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gtest_main +Description: GoogleTest (with main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Requires: gtest +Libs: -L${libdir} -lgtest_main -pthread +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 -pthread diff --git a/build/googletest-build/googlemock/gtest/libgtest.a b/build/googletest-build/googlemock/gtest/libgtest.a new file mode 100644 index 0000000..3426927 Binary files /dev/null and b/build/googletest-build/googlemock/gtest/libgtest.a differ diff --git a/build/googletest-build/googlemock/gtest/libgtest_main.a b/build/googletest-build/googlemock/gtest/libgtest_main.a new file mode 100644 index 0000000..ba2d31e Binary files /dev/null and b/build/googletest-build/googlemock/gtest/libgtest_main.a differ diff --git a/build/googletest-build/googlemock/libgmock.a b/build/googletest-build/googlemock/libgmock.a new file mode 100644 index 0000000..24bfd6f Binary files /dev/null and b/build/googletest-build/googlemock/libgmock.a differ diff --git a/build/googletest-build/googlemock/libgmock_main.a b/build/googletest-build/googlemock/libgmock_main.a new file mode 100644 index 0000000..a9ae4e7 Binary files /dev/null and b/build/googletest-build/googlemock/libgmock_main.a differ diff --git a/build/googletest-download/CMakeCache.txt b/build/googletest-download/CMakeCache.txt new file mode 100644 index 0000000..6ce24f4 --- /dev/null +++ b/build/googletest-download/CMakeCache.txt @@ -0,0 +1,116 @@ +# This is the CMakeCache file. +# For build in directory: /home/omar/try/build/googletest-download +# 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 +######################## + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//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_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//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=googletest-download + +//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 + +//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 + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//Value Computed by CMake +googletest-download_BINARY_DIR:STATIC=/home/omar/try/build/googletest-download + +//Value Computed by CMake +googletest-download_SOURCE_DIR:STATIC=/home/omar/try/build/googletest-download + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/omar/try/build/googletest-download +//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=16 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//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_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/omar/try/build/googletest-download +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.16 +//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 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 + diff --git a/build/googletest-download/CMakeFiles/3.16.3/CMakeSystem.cmake b/build/googletest-download/CMakeFiles/3.16.3/CMakeSystem.cmake new file mode 100644 index 0000000..116b79c --- /dev/null +++ b/build/googletest-download/CMakeFiles/3.16.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.11.0-38-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.11.0-38-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.11.0-38-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.11.0-38-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/googletest-download/CMakeFiles/CMakeDirectoryInformation.cmake b/build/googletest-download/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..28a288b --- /dev/null +++ b/build/googletest-download/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/omar/try/build/googletest-download") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/omar/try/build/googletest-download") + +# 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/googletest-download/CMakeFiles/CMakeOutput.log b/build/googletest-download/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..93529d9 --- /dev/null +++ b/build/googletest-download/CMakeFiles/CMakeOutput.log @@ -0,0 +1 @@ +The system is: Linux - 5.11.0-38-generic - x86_64 diff --git a/build/googletest-download/CMakeFiles/CMakeRuleHashes.txt b/build/googletest-download/CMakeFiles/CMakeRuleHashes.txt new file mode 100644 index 0000000..39c8406 --- /dev/null +++ b/build/googletest-download/CMakeFiles/CMakeRuleHashes.txt @@ -0,0 +1,11 @@ +# Hashes of file build rules. +2c0bd549ad4e048de1e7556d8078ccae CMakeFiles/googletest +a58f43f117f7c4c1eada4cc79ff464f3 CMakeFiles/googletest-complete +f975293681428e04948ff1815741f046 googletest-prefix/src/googletest-stamp/googletest-build +b43e62803ec6c54bcc83912166088df6 googletest-prefix/src/googletest-stamp/googletest-configure +53004971a442317848bbc464e3d74695 googletest-prefix/src/googletest-stamp/googletest-download +95ceb249ace164a587e238a2abf44945 googletest-prefix/src/googletest-stamp/googletest-install +a76b1de6dde9fb9264f35d26c1bee833 googletest-prefix/src/googletest-stamp/googletest-mkdir +ede054d3da4562284db4f1bf24c3cfec googletest-prefix/src/googletest-stamp/googletest-patch +1b65814f78b56e1b0f326c7de8df0392 googletest-prefix/src/googletest-stamp/googletest-test +9d460b1e49c8b0be0a2339b1633ef8de googletest-prefix/src/googletest-stamp/googletest-update diff --git a/build/googletest-download/CMakeFiles/Makefile.cmake b/build/googletest-download/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..1571db6 --- /dev/null +++ b/build/googletest-download/CMakeFiles/Makefile.cmake @@ -0,0 +1,42 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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" + "CMakeFiles/3.16.3/CMakeSystem.cmake" + "CMakeLists.txt" + "googletest-prefix/tmp/googletest-cfgcmd.txt.in" + "/usr/share/cmake-3.16/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.16/Modules/ExternalProject.cmake" + "/usr/share/cmake-3.16/Modules/FindGit.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.16/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.16/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.16/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-3.16/Modules/RepositoryInfo.txt.in" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt" + "googletest-prefix/tmp/googletest-cfgcmd.txt" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/googletest.dir/DependInfo.cmake" + ) diff --git a/build/googletest-download/CMakeFiles/Makefile2 b/build/googletest-download/CMakeFiles/Makefile2 new file mode 100644 index 0000000..7d68fd7 --- /dev/null +++ b/build/googletest-download/CMakeFiles/Makefile2 @@ -0,0 +1,106 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try/build/googletest-download + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build/googletest-download + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/googletest.dir/all + +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: + +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/googletest.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/googletest.dir + +# All Build rule for target. +CMakeFiles/googletest.dir/all: + $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/depend + $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target googletest" +.PHONY : CMakeFiles/googletest.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/googletest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/googletest-download/CMakeFiles 9 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/googletest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/googletest-download/CMakeFiles 0 +.PHONY : CMakeFiles/googletest.dir/rule + +# Convenience name for target. +googletest: CMakeFiles/googletest.dir/rule + +.PHONY : googletest + +# clean rule for target. +CMakeFiles/googletest.dir/clean: + $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/clean +.PHONY : CMakeFiles/googletest.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/googletest-download/CMakeFiles/TargetDirectories.txt b/build/googletest-download/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..509afa3 --- /dev/null +++ b/build/googletest-download/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/omar/try/build/googletest-download/CMakeFiles/rebuild_cache.dir +/home/omar/try/build/googletest-download/CMakeFiles/edit_cache.dir +/home/omar/try/build/googletest-download/CMakeFiles/googletest.dir diff --git a/build/googletest-download/CMakeFiles/cmake.check_cache b/build/googletest-download/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/googletest-download/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/googletest-download/CMakeFiles/googletest-complete b/build/googletest-download/CMakeFiles/googletest-complete new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake b/build/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake new file mode 100644 index 0000000..19fab21 --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake @@ -0,0 +1,11 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) +# The set of files for implicit dependencies of each language: + +# 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/googletest-download/CMakeFiles/googletest.dir/Labels.json b/build/googletest-download/CMakeFiles/googletest.dir/Labels.json new file mode 100644 index 0000000..4408c4f --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "/home/omar/try/build/googletest-download/CMakeFiles/googletest" + }, + { + "file" : "/home/omar/try/build/googletest-download/CMakeFiles/googletest.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/CMakeFiles/googletest-complete.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-update.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build.rule" + }, + { + "file" : "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test.rule" + } + ], + "target" : + { + "labels" : + [ + "googletest" + ], + "name" : "googletest" + } +} \ No newline at end of file diff --git a/build/googletest-download/CMakeFiles/googletest.dir/Labels.txt b/build/googletest-download/CMakeFiles/googletest.dir/Labels.txt new file mode 100644 index 0000000..2b1a167 --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + googletest +# Source files and their labels +/home/omar/try/build/googletest-download/CMakeFiles/googletest +/home/omar/try/build/googletest-download/CMakeFiles/googletest.rule +/home/omar/try/build/googletest-download/CMakeFiles/googletest-complete.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-update.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build.rule +/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test.rule diff --git a/build/googletest-download/CMakeFiles/googletest.dir/build.make b/build/googletest-download/CMakeFiles/googletest.dir/build.make new file mode 100644 index 0000000..d95b159 --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/build.make @@ -0,0 +1,147 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try/build/googletest-download + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build/googletest-download + +# Utility rule file for googletest. + +# Include the progress variables for this target. +include CMakeFiles/googletest.dir/progress.make + +CMakeFiles/googletest: CMakeFiles/googletest-complete + + +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-install +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-mkdir +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-download +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-update +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-patch +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-configure +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-build +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-install +CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-test + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'googletest'" + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-download/CMakeFiles + /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/CMakeFiles/googletest-complete + /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-done + +googletest-prefix/src/googletest-stamp/googletest-install: googletest-prefix/src/googletest-stamp/googletest-build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No install step for 'googletest'" + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E echo_append + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install + +googletest-prefix/src/googletest-stamp/googletest-mkdir: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Creating directories for 'googletest'" + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-src + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-build + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-download/googletest-prefix + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-download/googletest-prefix/tmp + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-download/googletest-prefix/src + /usr/bin/cmake -E make_directory /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp + /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir + +googletest-prefix/src/googletest-stamp/googletest-download: googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt +googletest-prefix/src/googletest-stamp/googletest-download: googletest-prefix/src/googletest-stamp/googletest-mkdir + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'googletest'" + cd /home/omar/try/build && /usr/bin/cmake -P /home/omar/try/build/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake + cd /home/omar/try/build && /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download + +googletest-prefix/src/googletest-stamp/googletest-update: googletest-prefix/src/googletest-stamp/googletest-download + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Performing update step for 'googletest'" + cd /home/omar/try/build/googletest-src && /usr/bin/cmake -P /home/omar/try/build/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake + +googletest-prefix/src/googletest-stamp/googletest-patch: googletest-prefix/src/googletest-stamp/googletest-download + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "No patch step for 'googletest'" + /usr/bin/cmake -E echo_append + /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch + +googletest-prefix/src/googletest-stamp/googletest-configure: googletest-prefix/tmp/googletest-cfgcmd.txt +googletest-prefix/src/googletest-stamp/googletest-configure: googletest-prefix/src/googletest-stamp/googletest-update +googletest-prefix/src/googletest-stamp/googletest-configure: googletest-prefix/src/googletest-stamp/googletest-patch + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No configure step for 'googletest'" + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E echo_append + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure + +googletest-prefix/src/googletest-stamp/googletest-build: googletest-prefix/src/googletest-stamp/googletest-configure + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No build step for 'googletest'" + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E echo_append + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build + +googletest-prefix/src/googletest-stamp/googletest-test: googletest-prefix/src/googletest-stamp/googletest-install + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/omar/try/build/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "No test step for 'googletest'" + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E echo_append + cd /home/omar/try/build/googletest-build && /usr/bin/cmake -E touch /home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test + +googletest: CMakeFiles/googletest +googletest: CMakeFiles/googletest-complete +googletest: googletest-prefix/src/googletest-stamp/googletest-install +googletest: googletest-prefix/src/googletest-stamp/googletest-mkdir +googletest: googletest-prefix/src/googletest-stamp/googletest-download +googletest: googletest-prefix/src/googletest-stamp/googletest-update +googletest: googletest-prefix/src/googletest-stamp/googletest-patch +googletest: googletest-prefix/src/googletest-stamp/googletest-configure +googletest: googletest-prefix/src/googletest-stamp/googletest-build +googletest: googletest-prefix/src/googletest-stamp/googletest-test +googletest: CMakeFiles/googletest.dir/build.make + +.PHONY : googletest + +# Rule to build all files generated by this target. +CMakeFiles/googletest.dir/build: googletest + +.PHONY : CMakeFiles/googletest.dir/build + +CMakeFiles/googletest.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/googletest.dir/cmake_clean.cmake +.PHONY : CMakeFiles/googletest.dir/clean + +CMakeFiles/googletest.dir/depend: + cd /home/omar/try/build/googletest-download && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try/build/googletest-download /home/omar/try/build/googletest-download /home/omar/try/build/googletest-download /home/omar/try/build/googletest-download /home/omar/try/build/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/googletest.dir/depend + diff --git a/build/googletest-download/CMakeFiles/googletest.dir/cmake_clean.cmake b/build/googletest-download/CMakeFiles/googletest.dir/cmake_clean.cmake new file mode 100644 index 0000000..75f3a42 --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/cmake_clean.cmake @@ -0,0 +1,17 @@ +file(REMOVE_RECURSE + "CMakeFiles/googletest" + "CMakeFiles/googletest-complete" + "googletest-prefix/src/googletest-stamp/googletest-build" + "googletest-prefix/src/googletest-stamp/googletest-configure" + "googletest-prefix/src/googletest-stamp/googletest-download" + "googletest-prefix/src/googletest-stamp/googletest-install" + "googletest-prefix/src/googletest-stamp/googletest-mkdir" + "googletest-prefix/src/googletest-stamp/googletest-patch" + "googletest-prefix/src/googletest-stamp/googletest-test" + "googletest-prefix/src/googletest-stamp/googletest-update" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ) + include(CMakeFiles/googletest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/googletest-download/CMakeFiles/googletest.dir/depend.internal b/build/googletest-download/CMakeFiles/googletest.dir/depend.internal new file mode 100644 index 0000000..f647855 --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/build/googletest-download/CMakeFiles/googletest.dir/depend.make b/build/googletest-download/CMakeFiles/googletest.dir/depend.make new file mode 100644 index 0000000..f647855 --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + diff --git a/build/googletest-download/CMakeFiles/googletest.dir/progress.make b/build/googletest-download/CMakeFiles/googletest.dir/progress.make new file mode 100644 index 0000000..d4f6ce3 --- /dev/null +++ b/build/googletest-download/CMakeFiles/googletest.dir/progress.make @@ -0,0 +1,10 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 + diff --git a/build/googletest-download/CMakeFiles/progress.marks b/build/googletest-download/CMakeFiles/progress.marks new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/build/googletest-download/CMakeFiles/progress.marks @@ -0,0 +1 @@ +9 diff --git a/build/googletest-download/CMakeLists.txt b/build/googletest-download/CMakeLists.txt new file mode 100644 index 0000000..018ee74 --- /dev/null +++ b/build/googletest-download/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.1) + +project(googletest-download NONE) + +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_FLAGS "-g -Wall -O3 -fprofile-arcs -ftest-coverage-pthread") + +include(ExternalProject) +ExternalProject_Add(googletest + GIT_REPOSITORY https://github.com/google/googletest.git + GIT_TAG release-1.8.1 + SOURCE_DIR "/home/omar/try/build/googletest-src" + BINARY_DIR "/home/omar/try/build/googletest-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" +) diff --git a/build/googletest-download/Makefile b/build/googletest-download/Makefile new file mode 100644 index 0000000..48dc1cc --- /dev/null +++ b/build/googletest-download/Makefile @@ -0,0 +1,148 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/omar/try/build/googletest-download + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build/googletest-download + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/googletest-download/CMakeFiles /home/omar/try/build/googletest-download/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/googletest-download/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named googletest + +# Build rule for target. +googletest: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 googletest +.PHONY : googletest + +# fast build rule for target. +googletest/fast: + $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/build +.PHONY : googletest/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... googletest" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/googletest-download/cmake_install.cmake b/build/googletest-download/cmake_install.cmake new file mode 100644 index 0000000..cade5f4 --- /dev/null +++ b/build/googletest-download/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/omar/try/build/googletest-download + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/omar/try/build/googletest-download/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-done b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-done new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt new file mode 100644 index 0000000..477e672 --- /dev/null +++ b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt @@ -0,0 +1,3 @@ +repository='https://github.com/google/googletest.git' +module='' +tag='origin' diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt new file mode 100644 index 0000000..477e672 --- /dev/null +++ b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt @@ -0,0 +1,3 @@ +repository='https://github.com/google/googletest.git' +module='' +tag='origin' diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test b/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test new file mode 100644 index 0000000..e69de29 diff --git a/build/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt b/build/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt new file mode 100644 index 0000000..6a6ed5f --- /dev/null +++ b/build/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/build/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt.in b/build/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt.in new file mode 100644 index 0000000..b3f09ef --- /dev/null +++ b/build/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt.in @@ -0,0 +1 @@ +cmd='@cmd@' diff --git a/build/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake b/build/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake new file mode 100644 index 0000000..0b2fe79 --- /dev/null +++ b/build/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake @@ -0,0 +1,66 @@ + +if(NOT "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt" IS_NEWER_THAN "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt") + message(STATUS "Avoiding repeated git clone, stamp file is up to date: '/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt'") + return() +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E remove_directory "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: '/home/omar/try/build/googletest-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "/usr/bin/git" clone --no-checkout "https://github.com/google/googletest.git" "googletest-src" + WORKING_DIRECTORY "/home/omar/try/build" + RESULT_VARIABLE error_code + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(STATUS "Had to git clone more than once: + ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/google/googletest.git'") +endif() + +execute_process( + COMMAND "/usr/bin/git" checkout release-1.8.1 -- + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'release-1.8.1'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "/usr/bin/git" submodule update --recursive --init + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/home/omar/try/build/googletest-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy + "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt" + "/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/home/omar/try/build/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt'") +endif() + diff --git a/build/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake b/build/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake new file mode 100644 index 0000000..1d5a23d --- /dev/null +++ b/build/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake @@ -0,0 +1,160 @@ + +execute_process( + COMMAND "/usr/bin/git" rev-list --max-count=1 HEAD + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE head_sha + OUTPUT_STRIP_TRAILING_WHITESPACE + ) +if(error_code) + message(FATAL_ERROR "Failed to get the hash for HEAD") +endif() + +execute_process( + COMMAND "/usr/bin/git" show-ref release-1.8.1 + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + OUTPUT_VARIABLE show_ref_output + ) +# If a remote ref is asked for, which can possibly move around, +# we must always do a fetch and checkout. +if("${show_ref_output}" MATCHES "remotes") + set(is_remote_ref 1) +else() + set(is_remote_ref 0) +endif() + +# Tag is in the form / (i.e. origin/master) we must strip +# the remote from the tag. +if("${show_ref_output}" MATCHES "refs/remotes/release-1.8.1") + string(REGEX MATCH "^([^/]+)/(.+)$" _unused "release-1.8.1") + set(git_remote "${CMAKE_MATCH_1}") + set(git_tag "${CMAKE_MATCH_2}") +else() + set(git_remote "origin") + set(git_tag "release-1.8.1") +endif() + +# This will fail if the tag does not exist (it probably has not been fetched +# yet). +execute_process( + COMMAND "/usr/bin/git" rev-list --max-count=1 release-1.8.1 + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE tag_sha + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + +# Is the hash checkout out that we want? +if(error_code OR is_remote_ref OR NOT ("${tag_sha}" STREQUAL "${head_sha}")) + execute_process( + COMMAND "/usr/bin/git" fetch + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) + if(error_code) + message(FATAL_ERROR "Failed to fetch repository 'https://github.com/google/googletest.git'") + endif() + + if(is_remote_ref) + # Check if stash is needed + execute_process( + COMMAND "/usr/bin/git" status --porcelain + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status + ) + if(error_code) + message(FATAL_ERROR "Failed to get the status") + endif() + string(LENGTH "${repo_status}" need_stash) + + # If not in clean state, stash changes in order to be able to be able to + # perform git pull --rebase + if(need_stash) + execute_process( + COMMAND "/usr/bin/git" stash save --all;--quiet + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) + if(error_code) + message(FATAL_ERROR "Failed to stash changes") + endif() + endif() + + # Pull changes from the remote branch + execute_process( + COMMAND "/usr/bin/git" rebase ${git_remote}/${git_tag} + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Rebase failed: Restore previous state. + execute_process( + COMMAND "/usr/bin/git" rebase --abort + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + ) + if(need_stash) + execute_process( + COMMAND "/usr/bin/git" stash pop --index --quiet + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: '/home/omar/try/build/googletest-src/'.\nYou will have to resolve the conflicts manually") + endif() + + if(need_stash) + execute_process( + COMMAND "/usr/bin/git" stash pop --index --quiet + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "/usr/bin/git" reset --hard --quiet + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) + execute_process( + COMMAND "/usr/bin/git" stash pop --quiet + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "/usr/bin/git" reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + ) + execute_process( + COMMAND "/usr/bin/git" stash pop --index --quiet + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + ) + message(FATAL_ERROR "\nFailed to unstash changes in: '/home/omar/try/build/googletest-src/'.\nYou will have to resolve the conflicts manually") + endif() + endif() + endif() + else() + execute_process( + COMMAND "/usr/bin/git" checkout release-1.8.1 + WORKING_DIRECTORY "/home/omar/try/build/googletest-src" + RESULT_VARIABLE error_code + ) + if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'release-1.8.1'") + endif() + endif() + + set(init_submodules TRUE) + if(init_submodules) + execute_process( + COMMAND "/usr/bin/git" submodule update --recursive --init + WORKING_DIRECTORY "/home/omar/try/build/googletest-src/" + RESULT_VARIABLE error_code + ) + endif() + if(error_code) + message(FATAL_ERROR "Failed to update submodules in: '/home/omar/try/build/googletest-src/'") + endif() +endif() + diff --git a/build/googletest-src b/build/googletest-src new file mode 160000 index 0000000..2fe3bd9 --- /dev/null +++ b/build/googletest-src @@ -0,0 +1 @@ +Subproject commit 2fe3bd994b3189899d93f1d5a881e725e046fdc2 diff --git a/build/libcompute_matrix.a b/build/libcompute_matrix.a new file mode 100644 index 0000000..78576db Binary files /dev/null and b/build/libcompute_matrix.a differ diff --git a/build/libf_letter.a b/build/libf_letter.a new file mode 100644 index 0000000..bb19302 Binary files /dev/null and b/build/libf_letter.a differ diff --git a/build/libmulti_compute_matrix.so b/build/libmulti_compute_matrix.so new file mode 100755 index 0000000..9d16b3e Binary files /dev/null and b/build/libmulti_compute_matrix.so differ diff --git a/build/test/CMakeFiles/CMakeDirectoryInformation.cmake b/build/test/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..8a1fca2 --- /dev/null +++ b/build/test/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/omar/try") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/omar/try/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/test/CMakeFiles/find_letters_tests.dir/C.includecache b/build/test/CMakeFiles/find_letters_tests.dir/C.includecache new file mode 100644 index 0000000..2289b60 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/C.includecache @@ -0,0 +1,30 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../include/testy/find_letters.h +stdio.h +- +stdlib.h +- +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- + +/home/omar/try/src/find_letters.c +testy/find_letters.h +/home/omar/try/src/testy/find_letters.h + diff --git a/build/test/CMakeFiles/find_letters_tests.dir/CXX.includecache b/build/test/CMakeFiles/find_letters_tests.dir/CXX.includecache new file mode 100644 index 0000000..43a2e01 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/CXX.includecache @@ -0,0 +1,32 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../include/testy/find_letters.h +stdio.h +- +stdlib.h +- +stdbool.h +- +math.h +- +unistd.h +- +sys/types.h +- +sys/mman.h +- +sys/wait.h +- + +/home/omar/try/test/find_letters.cpp +gtest/gtest.h +/home/omar/try/test/gtest/gtest.h +testy/find_letters.h +/home/omar/try/test/testy/find_letters.h + diff --git a/build/test/CMakeFiles/find_letters_tests.dir/DependInfo.cmake b/build/test/CMakeFiles/find_letters_tests.dir/DependInfo.cmake new file mode 100644 index 0000000..959ac97 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/DependInfo.cmake @@ -0,0 +1,44 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/omar/try/src/find_letters.c" "/home/omar/try/build/test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "SOURCE_DIR=\"/home/omar/try\"" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "../include/testy" + "../include" + ) +set(CMAKE_DEPENDS_CHECK_CXX + "/home/omar/try/test/find_letters.cpp" "/home/omar/try/build/test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o" + "/home/omar/try/test/main.cpp" "/home/omar/try/build/test/CMakeFiles/find_letters_tests.dir/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "SOURCE_DIR=\"/home/omar/try\"" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "../include/testy" + "../include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.gcno b/build/test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.gcno new file mode 100644 index 0000000..5bf8065 Binary files /dev/null and b/build/test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.gcno differ diff --git a/build/test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o b/build/test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o new file mode 100644 index 0000000..fef7c29 Binary files /dev/null and b/build/test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o differ diff --git a/build/test/CMakeFiles/find_letters_tests.dir/build.make b/build/test/CMakeFiles/find_letters_tests.dir/build.make new file mode 100644 index 0000000..beb1253 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/build.make @@ -0,0 +1,128 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# 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/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +# Include any dependencies generated for this target. +include test/CMakeFiles/find_letters_tests.dir/depend.make + +# Include the progress variables for this target. +include test/CMakeFiles/find_letters_tests.dir/progress.make + +# Include the compile flags for this target's objects. +include test/CMakeFiles/find_letters_tests.dir/flags.make + +test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o: test/CMakeFiles/find_letters_tests.dir/flags.make +test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o: ../src/find_letters.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o" + cd /home/omar/try/build/test && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o -c /home/omar/try/src/find_letters.c + +test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.i" + cd /home/omar/try/build/test && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/omar/try/src/find_letters.c > CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.i + +test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.s" + cd /home/omar/try/build/test && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/omar/try/src/find_letters.c -o CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.s + +test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o: test/CMakeFiles/find_letters_tests.dir/flags.make +test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o: ../test/find_letters.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o" + cd /home/omar/try/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/find_letters_tests.dir/find_letters.cpp.o -c /home/omar/try/test/find_letters.cpp + +test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/find_letters_tests.dir/find_letters.cpp.i" + cd /home/omar/try/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/try/test/find_letters.cpp > CMakeFiles/find_letters_tests.dir/find_letters.cpp.i + +test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/find_letters_tests.dir/find_letters.cpp.s" + cd /home/omar/try/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/try/test/find_letters.cpp -o CMakeFiles/find_letters_tests.dir/find_letters.cpp.s + +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: test/CMakeFiles/find_letters_tests.dir/flags.make +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: ../test/main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object test/CMakeFiles/find_letters_tests.dir/main.cpp.o" + cd /home/omar/try/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/find_letters_tests.dir/main.cpp.o -c /home/omar/try/test/main.cpp + +test/CMakeFiles/find_letters_tests.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/find_letters_tests.dir/main.cpp.i" + cd /home/omar/try/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/omar/try/test/main.cpp > CMakeFiles/find_letters_tests.dir/main.cpp.i + +test/CMakeFiles/find_letters_tests.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/find_letters_tests.dir/main.cpp.s" + cd /home/omar/try/build/test && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/omar/try/test/main.cpp -o CMakeFiles/find_letters_tests.dir/main.cpp.s + +# Object files for target find_letters_tests +find_letters_tests_OBJECTS = \ +"CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o" \ +"CMakeFiles/find_letters_tests.dir/find_letters.cpp.o" \ +"CMakeFiles/find_letters_tests.dir/main.cpp.o" + +# External object files for target find_letters_tests +find_letters_tests_EXTERNAL_OBJECTS = + +test/find_letters_tests: test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o +test/find_letters_tests: test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o +test/find_letters_tests: test/CMakeFiles/find_letters_tests.dir/main.cpp.o +test/find_letters_tests: test/CMakeFiles/find_letters_tests.dir/build.make +test/find_letters_tests: test/CMakeFiles/find_letters_tests.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/omar/try/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX executable find_letters_tests" + cd /home/omar/try/build/test && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/find_letters_tests.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +test/CMakeFiles/find_letters_tests.dir/build: test/find_letters_tests + +.PHONY : test/CMakeFiles/find_letters_tests.dir/build + +test/CMakeFiles/find_letters_tests.dir/clean: + cd /home/omar/try/build/test && $(CMAKE_COMMAND) -P CMakeFiles/find_letters_tests.dir/cmake_clean.cmake +.PHONY : test/CMakeFiles/find_letters_tests.dir/clean + +test/CMakeFiles/find_letters_tests.dir/depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/omar/try /home/omar/try/test /home/omar/try/build /home/omar/try/build/test /home/omar/try/build/test/CMakeFiles/find_letters_tests.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : test/CMakeFiles/find_letters_tests.dir/depend + diff --git a/build/test/CMakeFiles/find_letters_tests.dir/cmake_clean.cmake b/build/test/CMakeFiles/find_letters_tests.dir/cmake_clean.cmake new file mode 100644 index 0000000..0d46f1e --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o" + "CMakeFiles/find_letters_tests.dir/find_letters.cpp.o" + "CMakeFiles/find_letters_tests.dir/main.cpp.o" + "find_letters_tests" + "find_letters_tests.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C CXX) + include(CMakeFiles/find_letters_tests.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/test/CMakeFiles/find_letters_tests.dir/depend.internal b/build/test/CMakeFiles/find_letters_tests.dir/depend.internal new file mode 100644 index 0000000..4e017e7 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/depend.internal @@ -0,0 +1,33 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o + ../include/testy/find_letters.h + /home/omar/try/src/find_letters.c +test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o + ../include/testy/find_letters.h + /home/omar/try/test/find_letters.cpp +test/CMakeFiles/find_letters_tests.dir/main.cpp.o + /home/omar/try/test/main.cpp + googletest-src/googletest/include/gtest/gtest-death-test.h + googletest-src/googletest/include/gtest/gtest-message.h + googletest-src/googletest/include/gtest/gtest-param-test.h + googletest-src/googletest/include/gtest/gtest-printers.h + googletest-src/googletest/include/gtest/gtest-test-part.h + googletest-src/googletest/include/gtest/gtest-typed-test.h + googletest-src/googletest/include/gtest/gtest.h + googletest-src/googletest/include/gtest/gtest_pred_impl.h + googletest-src/googletest/include/gtest/gtest_prod.h + googletest-src/googletest/include/gtest/internal/custom/gtest-port.h + googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h + googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h + googletest-src/googletest/include/gtest/internal/gtest-filepath.h + googletest-src/googletest/include/gtest/internal/gtest-internal.h + googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h + googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h + googletest-src/googletest/include/gtest/internal/gtest-param-util.h + googletest-src/googletest/include/gtest/internal/gtest-port-arch.h + googletest-src/googletest/include/gtest/internal/gtest-port.h + googletest-src/googletest/include/gtest/internal/gtest-string.h + googletest-src/googletest/include/gtest/internal/gtest-tuple.h + googletest-src/googletest/include/gtest/internal/gtest-type-util.h diff --git a/build/test/CMakeFiles/find_letters_tests.dir/depend.make b/build/test/CMakeFiles/find_letters_tests.dir/depend.make new file mode 100644 index 0000000..002594d --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/depend.make @@ -0,0 +1,33 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o: ../include/testy/find_letters.h +test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o: ../src/find_letters.c + +test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o: ../include/testy/find_letters.h +test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o: ../test/find_letters.cpp + +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: ../test/main.cpp +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest-death-test.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest-message.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest-param-test.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest-printers.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest-test-part.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest-typed-test.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest_pred_impl.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/gtest_prod.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/custom/gtest-port.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-filepath.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-internal.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-linked_ptr.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-param-util-generated.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-param-util.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-port-arch.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-port.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-string.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-tuple.h +test/CMakeFiles/find_letters_tests.dir/main.cpp.o: googletest-src/googletest/include/gtest/internal/gtest-type-util.h + diff --git a/build/test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.gcno b/build/test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.gcno new file mode 100644 index 0000000..4f598e3 Binary files /dev/null and b/build/test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.gcno differ diff --git a/build/test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o b/build/test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o new file mode 100644 index 0000000..c257ae6 Binary files /dev/null and b/build/test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o differ diff --git a/build/test/CMakeFiles/find_letters_tests.dir/flags.make b/build/test/CMakeFiles/find_letters_tests.dir/flags.make new file mode 100644 index 0000000..171ab70 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/flags.make @@ -0,0 +1,17 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# compile C with /usr/bin/cc +# compile CXX with /usr/bin/c++ +C_FLAGS = -g -Wall -Werror -Wextra -O3 -fprofile-arcs -ftest-coverage + +C_DEFINES = -DSOURCE_DIR=\"/home/omar/try\" + +C_INCLUDES = -I/home/omar/try/include/testy -I/home/omar/try/include + +CXX_FLAGS = -g -Wall -O3 -fprofile-arcs -ftest-coverage + +CXX_DEFINES = -DSOURCE_DIR=\"/home/omar/try\" + +CXX_INCLUDES = -I/home/omar/try/include/testy -I/home/omar/try/include + diff --git a/build/test/CMakeFiles/find_letters_tests.dir/link.txt b/build/test/CMakeFiles/find_letters_tests.dir/link.txt new file mode 100644 index 0000000..d5cfed6 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -g -Wall -O3 -fprofile-arcs -ftest-coverage CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o CMakeFiles/find_letters_tests.dir/find_letters.cpp.o CMakeFiles/find_letters_tests.dir/main.cpp.o -o find_letters_tests -lgtest_main -lgtest diff --git a/build/test/CMakeFiles/find_letters_tests.dir/main.cpp.gcno b/build/test/CMakeFiles/find_letters_tests.dir/main.cpp.gcno new file mode 100644 index 0000000..7495937 Binary files /dev/null and b/build/test/CMakeFiles/find_letters_tests.dir/main.cpp.gcno differ diff --git a/build/test/CMakeFiles/find_letters_tests.dir/main.cpp.o b/build/test/CMakeFiles/find_letters_tests.dir/main.cpp.o new file mode 100644 index 0000000..c37d58e Binary files /dev/null and b/build/test/CMakeFiles/find_letters_tests.dir/main.cpp.o differ diff --git a/build/test/CMakeFiles/find_letters_tests.dir/progress.make b/build/test/CMakeFiles/find_letters_tests.dir/progress.make new file mode 100644 index 0000000..d038a63 --- /dev/null +++ b/build/test/CMakeFiles/find_letters_tests.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 3 +CMAKE_PROGRESS_2 = 4 +CMAKE_PROGRESS_3 = 5 +CMAKE_PROGRESS_4 = 6 + diff --git a/build/test/CMakeFiles/progress.marks b/build/test/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/build/test/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/build/test/CTestTestfile.cmake b/build/test/CTestTestfile.cmake new file mode 100644 index 0000000..375bed6 --- /dev/null +++ b/build/test/CTestTestfile.cmake @@ -0,0 +1,8 @@ +# CMake generated Testfile for +# Source directory: /home/omar/try/test +# Build directory: /home/omar/try/build/test +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test(find_letters "/home/omar/try/build/test/find_letters_tests") +set_tests_properties(find_letters PROPERTIES _BACKTRACE_TRIPLES "/home/omar/try/test/CMakeLists.txt;17;add_test;/home/omar/try/test/CMakeLists.txt;0;") diff --git a/build/test/Makefile b/build/test/Makefile new file mode 100644 index 0000000..3e714b1 --- /dev/null +++ b/build/test/Makefile @@ -0,0 +1,252 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.16 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/omar/try + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/omar/try/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test + +.PHONY : test/fast + +# The main all target +all: cmake_check_build_system + cd /home/omar/try/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles /home/omar/try/build/test/CMakeFiles/progress.marks + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 test/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/omar/try/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 test/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 test/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 test/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +test/CMakeFiles/find_letters_tests.dir/rule: + cd /home/omar/try/build && $(MAKE) -f CMakeFiles/Makefile2 test/CMakeFiles/find_letters_tests.dir/rule +.PHONY : test/CMakeFiles/find_letters_tests.dir/rule + +# Convenience name for target. +find_letters_tests: test/CMakeFiles/find_letters_tests.dir/rule + +.PHONY : find_letters_tests + +# fast build rule for target. +find_letters_tests/fast: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/build +.PHONY : find_letters_tests/fast + +__/src/find_letters.o: __/src/find_letters.c.o + +.PHONY : __/src/find_letters.o + +# target to build an object file +__/src/find_letters.c.o: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.o +.PHONY : __/src/find_letters.c.o + +__/src/find_letters.i: __/src/find_letters.c.i + +.PHONY : __/src/find_letters.i + +# target to preprocess a source file +__/src/find_letters.c.i: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.i +.PHONY : __/src/find_letters.c.i + +__/src/find_letters.s: __/src/find_letters.c.s + +.PHONY : __/src/find_letters.s + +# target to generate assembly for a file +__/src/find_letters.c.s: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/__/src/find_letters.c.s +.PHONY : __/src/find_letters.c.s + +find_letters.o: find_letters.cpp.o + +.PHONY : find_letters.o + +# target to build an object file +find_letters.cpp.o: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.o +.PHONY : find_letters.cpp.o + +find_letters.i: find_letters.cpp.i + +.PHONY : find_letters.i + +# target to preprocess a source file +find_letters.cpp.i: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.i +.PHONY : find_letters.cpp.i + +find_letters.s: find_letters.cpp.s + +.PHONY : find_letters.s + +# target to generate assembly for a file +find_letters.cpp.s: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/find_letters.cpp.s +.PHONY : find_letters.cpp.s + +main.o: main.cpp.o + +.PHONY : main.o + +# target to build an object file +main.cpp.o: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/main.cpp.o +.PHONY : main.cpp.o + +main.i: main.cpp.i + +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s + +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + cd /home/omar/try/build && $(MAKE) -f test/CMakeFiles/find_letters_tests.dir/build.make test/CMakeFiles/find_letters_tests.dir/main.cpp.s +.PHONY : main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... edit_cache" + @echo "... test" + @echo "... find_letters_tests" + @echo "... __/src/find_letters.o" + @echo "... __/src/find_letters.i" + @echo "... __/src/find_letters.s" + @echo "... find_letters.o" + @echo "... find_letters.i" + @echo "... find_letters.s" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/omar/try/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/test/cmake_install.cmake b/build/test/cmake_install.cmake new file mode 100644 index 0000000..2b21694 --- /dev/null +++ b/build/test/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/omar/try/test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + diff --git a/build/testy b/build/testy new file mode 100755 index 0000000..63c3897 Binary files /dev/null and b/build/testy differ diff --git a/build/try b/build/try new file mode 100755 index 0000000..9739b54 Binary files /dev/null and b/build/try differ diff --git a/include/testy/find_letters.h b/include/testy/find_letters.h new file mode 100644 index 0000000..33e368b --- /dev/null +++ b/include/testy/find_letters.h @@ -0,0 +1,58 @@ +#ifndef FUNCTION_H +#define FUNCTION_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define MAX_NUMBER_LETTERS 1000000 +#define MAX_NUMBER_TOPICS 1000 + + +typedef struct letter letter; +typedef struct date_frame date_frame; +typedef struct str_topics str_topics; + +struct str_topics { + int number; + char topics[100][10]; +}; + + +struct date_frame { + int year; + int month; + int day; +}; + +struct letter { + int sender_id; + int ecipient_id[10]; + char topic[10]; + int number_ecipient; + date_frame date; +}; + +int testing_letters_el(letter** letters, int N); + +int date_in_key(date_frame date); + +int binary_search(letter** k, int key, int N); + +int get_number_process(); + +int fill_in_elements(letter** letters); + +str_topics* singleprocces_find_topic(letter** letters, int start,int end, int number_user); + +str_topics* multiprocess_find_topic(letter** letters, int start,int end, int number_user); + +int equality_test(str_topics* topics1,str_topics* topics2); +#endif \ No newline at end of file diff --git a/src/find_letters.c b/src/find_letters.c new file mode 100644 index 0000000..ee1e5f1 --- /dev/null +++ b/src/find_letters.c @@ -0,0 +1,225 @@ +#include "../include/testy/find_letters.h" + + +int get_number_process() { + + unsigned int eax=11,ebx=0,ecx=1,edx=0; + + asm volatile("cpuid" + : "=a" (eax), + "=b" (ebx), + "=c" (ecx), + "=d" (edx) + : "0" (eax), "2" (ecx) + : ); + + return eax; +} + +int date_in_key(date_frame date) { + + int value = (((date.year)*12 + date.month)*30 + date.day); + + return value; +} + +int binary_search(letter** k, int key, int N) { + if (k == NULL) { + printf("Ошибка! На вход функции binary_search подается нулевой указатель."); + return -1; + } + int left = 0; + int right = N-1; + int search = -1; + while (left <= right) + { + int mid = (left + right) / 2; + if (k[mid] == NULL) { + printf("Ошибка! Элемент в массиве является нулевым указателем."); + } + if (key == date_in_key(k[mid]->date)) { + search = mid; + break; + } + if (key < date_in_key(k[mid]->date)) { + right = mid - 1; + } + else { + left = mid + 1; + } + } + + if (search == -1) { + if (left == N) { + left=left-1; + } + search = left; + } + return search; +} + +int fill_in_elements(letter** letters) { + if (letters == NULL) { + printf("Ошибка! На вход функции fill_in_elements подается нулевой указатель."); + return -1; + } + for (int i=0;isender_id = i; + letters[i]->number_ecipient = rand() % 7 + 1; + for (int j = 0; jnumber_ecipient; ++j) { + letters[i]->ecipient_id[j] = rand() % MAX_NUMBER_LETTERS; + } + int Y = MAX_NUMBER_LETTERS / 10; + int M = Y / 12; + letters[i]->date.year = i / Y; + letters[i]->date.month = (i % Y) / M; + letters[i]->date.day = ((i % Y) % M) % 30; + for (int j=0;j<9;++j) { + letters[i]->topic[j] = 65 + rand() % 25 ; + } + letters[i]->topic[9] = '\0'; + } + return 0; +} + +str_topics* singleprocces_find_topic(letter** letters, int start,int end, int number_user) { + if (letters == NULL) { + printf("Ошибка! На вход функции singleprocces_find_topic подается нулевой указатель."); + return NULL; + } + str_topics* find_topics = (str_topics*) calloc(MAX_NUMBER_TOPICS,sizeof(str_topics)); + find_topics->number = 0; + if (find_topics == NULL) { + printf("Ошибка! В функции singleprocces_find_topic не выделена память."); + return NULL; + } + for (int i=start;i<=end;++i) { + for (int j=0;jnumber_ecipient;++j){ + if (letters[i]->ecipient_id[j] == number_user) { + for (int o=0;o<9;++o) { + find_topics->topics[find_topics->number][o] = letters[i]->topic[o]; + } + find_topics->number = find_topics->number + 1; + } + } + } + return find_topics; +} + +str_topics* multiprocess_find_topic(letter** letters, int start,int end, int number_user) { + if (letters == NULL) { + printf("Ошибка! На вход функции multiprocess_find_topic подается нулевой указатель."); + return 0; + } + long page_size = getpagesize(); + str_topics* shared_memory = mmap(NULL, page_size, PROT_READ | PROT_WRITE, + MAP_SHARED | MAP_ANONYMOUS, -1, 0); + if (shared_memory == MAP_FAILED) { + return NULL; + } + + + int numberOfChildren = get_number_process(); + pid_t *childPids = NULL; + pid_t p; + + /* Allocate array of child PIDs: error handling omitted for brevity */ + childPids = malloc(numberOfChildren * sizeof(pid_t)); + + if (childPids == NULL) { + return NULL; + } + + int step=(end-start)/numberOfChildren; + int begin = start; + + /* Start up children */ + for (int ii = 0; ii < numberOfChildren; ++ii) { + start = begin + ii*step; + end = begin + (ii+1)*step; + if ((p = fork()) == 0) { + str_topics* topics_singl = singleprocces_find_topic(letters, start, end, number_user); + for (int i=0;inumber;++i) { + for (int j=0;j<10;++j) { + shared_memory->topics[shared_memory->number][j] = topics_singl->topics[i][j]; + } + shared_memory->number = shared_memory->number + 1; + } + exit(0); + } + else { + childPids[ii] = p; + } + } + + /* Wait for children to exit */ + int stillWaiting; + do { + stillWaiting = 0; + for (int ii = 0; ii < numberOfChildren; ++ii) { + if (childPids[ii] > 0) { + if (waitpid(childPids[ii], NULL, WNOHANG) != 0) { + /* Child is done */ + childPids[ii] = 0; + } + else { + /* Still waiting on this child */ + stillWaiting = 1; + } + } + /* Give up timeslice and prevent hard loop: this may not work on all flavors of Unix */ + sleep(0); + } + } while (stillWaiting); + + /* Cleanup */ + free(childPids); + return shared_memory; + +} + +int testing_letters_el(letter** letters, int N) { + + for (int i=0;isender_id = i; + letters[i]->number_ecipient = 1; + letters[i]->ecipient_id[0] = i % 50; + int Y = (N / 10)+1; + int M = (Y / 12)+1; + letters[i]->date.year = (int)(i / Y); + letters[i]->date.month = (int)((i % Y ) / M ); + letters[i]->date.day = (int)(((i % Y) % M ) % 30); + for (int j=0;j<9;++j) { + letters[i]->topic[j] = 65 + i % 7; + } + letters[i]->topic[9] = '\0'; + } + + return 0; +} + +int equality_test(str_topics* topics1,str_topics* topics2) { + if (topics1->number == topics2->number) { + for (int i=0;inumber;++i) { + if (topics1->topics[i][0] != topics2->topics[i][0]) { + return 0; + } + } + return 1; + } else { + return 0; + } +} + + diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..aa69d4d --- /dev/null +++ b/src/main.c @@ -0,0 +1,80 @@ +#include "../include/testy/find_letters.h" + + +int main() { + srand(time(NULL)); + + void *handle = dlopen("./find_let.so", RTLD_LAZY); + + int (*funcpt)(); + + *(void **)(&funcpt) = dlsym(handle, "multiprocess_find_topic"); + + letter* letters[MAX_NUMBER_LETTERS]; + date_frame start_letters,end_letters; + str_topics* topics1; + + fill_in_elements(letters); + int sc=1; + // printf("Выберите с какого года искать письма?[2010-2020]\n"); + // if (scanf("%d", &sc) == -1) return -1; + // start_letters.year = sc-2011; + // printf("Выберите с какого месяца искать письма?[1-12]\n"); + // if (scanf("%d", &sc) == -1) return -1; + // start_letters.month = sc; + // printf("Выберите с какого дня искать письма?[1-30]\n"); + // if (scanf("%d", &sc) == -1) return -1; + // start_letters.day = sc; + + printf("Выберите до какого года искать письма?[2010-2020]\n"); + if (scanf("%d", &sc) == -1) return -1; + end_letters.year = sc-2011; + printf("Выберите до какого месяца искать письма?[1-12]\n"); + if (scanf("%d", &sc) == -1) return -1; + end_letters.month = sc; + printf("Выберите до какого дня искать письма?[1-30]\n"); + if (scanf("%d", &sc) == -1) return -1; + end_letters.day = sc; + // end_letters.year =start_letters.year; + // end_letters.month = start_letters.month; + // end_letters.day = start_letters.day + 15; + start_letters.year = 0; + start_letters.month = 0; + start_letters.day = 1; + // end_letters.year = 9; + // end_letters.month = 4; + // end_letters.day = 25; + int id; + printf("Выберите id пользователя?[1-30]\n"); + if (scanf("%d", &id) == -1) return -1; + + int numb_start = binary_search(letters, date_in_key(start_letters),MAX_NUMBER_LETTERS); + int numb_end = binary_search(letters, date_in_key(end_letters),MAX_NUMBER_LETTERS); + topics1 = singleprocces_find_topic(letters, numb_start, numb_end, 15); + printf("Многопроцессорная реализация?[0/1]\n"); + if (scanf("%d", &sc) == -1) return -1; + while (sc != 0 && sc != 1) { + if (sc == 1) { + topics1 = multiprocess_find_topic(letters, numb_start, numb_end, 15); + } else { + if (sc == 0) { + topics1 = singleprocces_find_topic(letters, numb_start, numb_end, 15); + } else { + printf("Введите 0 или 1.\n"); + if (scanf("%d", &sc) == -1) return -1; + } + } + } + + for (int i=0;inumber;++i) { + printf("%d-ая тема пользователя %s\n",i,topics1->topics[i]); + } + if (sc == 1) { + free(topics1); + } else { + if (sc == 0 ) { + munmap(topics1, getpagesize()); + } + } + return 0; +} \ No newline at end of file diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..3a3df05 --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,18 @@ +include_directories("${PROJECT_SOURCE_DIR}/include") + +file(GLOB sources "${PROJECT_SOURCE_DIR}/src/*.c") +list(REMOVE_ITEM sources "${PROJECT_SOURCE_DIR}/src/main.c") + +file(GLOB tests "${PROJECT_SOURCE_DIR}/test/*.cpp") +list(REMOVE_ITEM tests "${PROJECT_SOURCE_DIR}/test/main.cpp") + +foreach(file ${tests}) + set(name) + get_filename_component(name ${file} NAME_WE) + add_executable("${name}_tests" + ${sources} + ${file} + "${PROJECT_SOURCE_DIR}/test/main.cpp") + target_link_libraries("${name}_tests" gtest_main) + add_test(NAME ${name} COMMAND "${name}_tests") +endforeach() diff --git a/test/main.cpp b/test/main.cpp new file mode 100644 index 0000000..855af00 --- /dev/null +++ b/test/main.cpp @@ -0,0 +1,308 @@ +#include "gtest/gtest.h" + +extern "C" { +#include "../include/testy/find_letters.h" +} + +TEST(date_in_key, ok) { + date_frame date; + date.year = 10; + date.month = 5; + date.day = 3; + EXPECT_EQ(date_in_key(date), 3753); +} + +TEST(binary_search, ok) { + letter* let[200]; + testing_letters_el(let,200); + EXPECT_EQ(binary_search(let,753,200), 46); + for (int i = 0;i<200;++i) { + free(let[i]); + } +} + +TEST(binary_search_null, not_ok) { + letter** let=NULL; + EXPECT_EQ(binary_search(let,753,200), -1); +} + +TEST(fill_in_elements, ok) { + letter** letters = NULL; + EXPECT_EQ(fill_in_elements(letters), -1); +} + +TEST(multi_and_singleproc, ok) { + letter* letters[MAX_NUMBER_LETTERS]; + fill_in_elements(letters); + date_frame start_letters,end_letters; + start_letters.year = 0; + start_letters.month = 0; + start_letters.day = 1; + end_letters.year = 9; + end_letters.month = 4; + end_letters.day = 25; + int numb_start = binary_search(letters, date_in_key(start_letters),MAX_NUMBER_LETTERS); + int numb_end = binary_search(letters, date_in_key(end_letters),MAX_NUMBER_LETTERS); + str_topics* topics1 = singleprocces_find_topic(letters, numb_start, numb_end,7); + str_topics* topics2 = multiprocess_find_topic(letters, numb_start, numb_end,7); + EXPECT_EQ(equality_test(topics1,topics2),1); + + for (int i = 0;inumber=4; + topics2->topics[0][0]='D'; + topics2->topics[1][0]='E'; + topics2->topics[2][0]='F'; + topics2->topics[3][0]='G'; + EXPECT_EQ(equality_test(topics1,topics2),1); + for (int i = 0;i<200;++i) { + free(letters[i]); + } + free(topics1); + free(topics2); +} + + + +TEST(singleproc_1000el, ok) { + letter* letters[1000]; + date_frame start_letters,end_letters; + start_letters.year = 8; + start_letters.month = 0; + start_letters.day = 0; + end_letters.year = 8; + end_letters.month = 12; + end_letters.day = 0; + testing_letters_el(letters,1000); + int numb_start = binary_search(letters, date_in_key(start_letters),1000); + int numb_end = binary_search(letters, date_in_key(end_letters),1000); + str_topics* topics1 = singleprocces_find_topic(letters, numb_start, numb_end, 15); + str_topics* topics2 = (str_topics*) malloc(sizeof(str_topics)); + topics2->number=2; + topics2->topics[0][0]='D'; + topics2->topics[1][0]='E'; + EXPECT_EQ(equality_test(topics1,topics2),1); + for (int i = 0;i<1000;++i) { + free(letters[i]); + } + free(topics1); + free(topics2); +} + + +TEST(singleproc_10000el, ok) { + letter* letters[10000]; + date_frame start_letters,end_letters; + start_letters.year = 8; + start_letters.month = 11; + start_letters.day = 0; + end_letters.year = 8; + end_letters.month = 12; + end_letters.day = 0; + testing_letters_el(letters,10000); + int numb_start = binary_search(letters, date_in_key(start_letters),10000); + int numb_end = binary_search(letters, date_in_key(end_letters),10000); + str_topics* topics1 = singleprocces_find_topic(letters, numb_start, numb_end, 15); + str_topics* topics2 = (str_topics*) malloc(sizeof(str_topics)); + topics2->number=1; + topics2->topics[0][0]='F'; + EXPECT_EQ(equality_test(topics1,topics2),1); + for (int i = 0;i<10000;++i) { + free(letters[i]); + } + free(topics1); + free(topics2); +} + +TEST(singleproc_100000el, ok) { + letter* letters[100000]; + date_frame start_letters,end_letters; + start_letters.year = 8; + start_letters.month = 11; + start_letters.day = 0; + end_letters.year = 8; + end_letters.month = 12; + end_letters.day = 0; + testing_letters_el(letters,100000); + int numb_start = binary_search(letters, date_in_key(start_letters),100000); + int numb_end = binary_search(letters, date_in_key(end_letters),100000); + str_topics* topics1 = singleprocces_find_topic(letters, numb_start, numb_end, 15); + str_topics* topics2 = (str_topics*) malloc(sizeof(str_topics)); + topics2->number=3; + topics2->topics[0][0]='G'; + topics2->topics[1][0]='A'; + topics2->topics[2][0]='B'; + EXPECT_EQ(equality_test(topics1,topics2),1); + for (int i = 0;i<100000;++i) { + free(letters[i]); + } + free(topics1); + free(topics2); +} + +TEST(multi_200el, ok) { + letter* letters[200]; + date_frame start_letters,end_letters; + start_letters.year = 0; + start_letters.month = 0; + start_letters.day = 1; + end_letters.year = 9; + end_letters.month = 4; + end_letters.day = 25; + testing_letters_el(letters,200); + int numb_start = binary_search(letters, date_in_key(start_letters),200); + int numb_end = binary_search(letters, date_in_key(end_letters),200); + str_topics* topics1 = multiprocess_find_topic(letters, numb_start, numb_end, 10); + str_topics* topics2 = (str_topics*) malloc(sizeof(str_topics)); + topics2->number=4; + topics2->topics[0][0]='D'; + topics2->topics[1][0]='E'; + topics2->topics[2][0]='F'; + topics2->topics[3][0]='G'; + EXPECT_EQ(equality_test(topics1,topics2),1); + for (int i = 0;i<200;++i) { + free(letters[i]); + } + munmap(topics1,getpagesize()); + free(topics2); +} + + + +TEST(multi_1000el, ok) { + letter* letters[1000]; + date_frame start_letters,end_letters; + start_letters.year = 8; + start_letters.month = 0; + start_letters.day = 0; + end_letters.year = 8; + end_letters.month = 12; + end_letters.day = 0; + testing_letters_el(letters,1000); + int numb_start = binary_search(letters, date_in_key(start_letters),1000); + int numb_end = binary_search(letters, date_in_key(end_letters),1000); + str_topics* topics1 = multiprocess_find_topic(letters, numb_start, numb_end, 15); + str_topics* topics2 = (str_topics*) malloc(sizeof(str_topics)); + topics2->number=2; + topics2->topics[0][0]='D'; + topics2->topics[1][0]='E'; + EXPECT_EQ(equality_test(topics1,topics2),1); + for (int i = 0;i<1000;++i) { + free(letters[i]); + } + munmap(topics1,getpagesize()); + free(topics2); +} + + +TEST(multi_10000el, ok) { + letter* letters[10000]; + date_frame start_letters,end_letters; + start_letters.year = 8; + start_letters.month = 11; + start_letters.day = 0; + end_letters.year = 8; + end_letters.month = 12; + end_letters.day = 0; + testing_letters_el(letters,10000); + int numb_start = binary_search(letters, date_in_key(start_letters),10000); + int numb_end = binary_search(letters, date_in_key(end_letters),10000); + str_topics* topics1 = multiprocess_find_topic(letters, numb_start, numb_end, 15); + str_topics* topics2 = (str_topics*) malloc(sizeof(str_topics)); + topics2->number=1; + topics2->topics[0][0]='F'; + EXPECT_EQ(equality_test(topics1,topics2),1); + for (int i = 0;i<10000;++i) { + free(letters[i]); + } + munmap(topics1,getpagesize()); + free(topics2); +} + +TEST(multi_100000el, ok) { + letter* letters[100000]; + date_frame start_letters,end_letters; + start_letters.year = 8; + start_letters.month = 11; + start_letters.day = 0; + end_letters.year = 8; + end_letters.month = 12; + end_letters.day = 0; + testing_letters_el(letters,100000); + int numb_start = binary_search(letters, date_in_key(start_letters),100000); + int numb_end = binary_search(letters, date_in_key(end_letters),100000); + str_topics* topics1 = multiprocess_find_topic(letters, numb_start, numb_end, 15); + str_topics* topics2 = (str_topics*) malloc(sizeof(str_topics)); + topics2->number=3; + topics2->topics[0][0]='G'; + topics2->topics[1][0]='G'; + topics2->topics[2][0]='B'; + EXPECT_EQ(equality_test(topics1,topics2),0); + for (int i = 0;i<100000;++i) { + free(letters[i]); + } + munmap(topics1,getpagesize()); + free(topics2); +} + + +TEST(singleprocces_find_topic_null, not_ok) { + letter** letters = NULL; + int condition = (singleprocces_find_topic(letters,1,1000,17) == NULL); + ASSERT_TRUE(condition); +} + +TEST(multi_find_topic_null, not_ok) { + letter** letters = NULL; + int condition = (multiprocess_find_topic(letters,1,1000,17) == NULL); + ASSERT_TRUE(condition); +} + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} + +