diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..9f58c84 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/gstreamer-1.0", + "/usr/include/glib-2.0", + "/usr/lib/aarch64-linux-gnu/glib-2.0/include" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "gnu17", + "cppStandard": "gnu++14", + "intelliSenseMode": "linux-gcc-arm64", + "configurationProvider": "ms-vscode.cmake-tools" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ef735b9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "gst.h": "c" + } +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 59f50c1..ae06f58 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,6 +1,19 @@ { "version": "2.0.0", "tasks": [ + { + "label": "CMake", + "detail": "Produce MakeFile", + "command":[ + "cmake" + ], + "type": "shell", + "args": [".."], + "options": { + "cwd": "${workspaceFolder}/build", + }, + "group": "build", + }, { "label": "Build", "detail": "Build the program", @@ -21,7 +34,7 @@ { "label": "Run", "detail": "Run Compiled Program", - "command": "./BasicTutorial1", + "command": "./BasicTutorial", "type": "shell", "group": "build", "options": { diff --git a/CMakeLists.txt b/CMakeLists.txt index f26618f..8ec35b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,12 +1,13 @@ cmake_minimum_required(VERSION 3.10) -project(BasicTutorial1) +project(BasicTutorial) include_directories(/usr/include/gstreamer-1.0) include_directories(/usr/include/glib-2.0) include_directories(/usr/lib/aarch64-linux-gnu/glib-2.0/include) -add_executable(${PROJECT_NAME} basic-tutorial-1.c) +# add_executable(${PROJECT_NAME} basic-tutorial-1.c) +add_executable(${PROJECT_NAME} basic-tutorial-2.c) target_link_libraries(${PROJECT_NAME} gstreamer-1.0 diff --git a/basic-tutorial-2.c b/basic-tutorial-2.c new file mode 100644 index 0000000..b7b24e2 --- /dev/null +++ b/basic-tutorial-2.c @@ -0,0 +1,80 @@ +#include + +int main (int argc, char *argv[]) +{ + GstElement *pipeline, *source, *sink; + GstBus *bus; + GstMessage *msg; + GstStateChangeReturn ret; + + /* Initialize */ + gst_init(&argc,&argv); + + /* Create the elements */ + source = gst_element_factory_make("videotestsrc","source"); + sink = gst_element_factory_make("autovideosink","sink"); + + /* Create the empty pipeline */ + pipeline = gst_pipeline_new("test-pipeline"); + + if(!pipeline || !source || !sink) + { + g_printerr("Not all elements could be created!\n"); + return -1; + } + + /* Build the pipeline */ + gst_bin_add_many(GST_BIN(pipeline),source,sink,NULL); + if (gst_element_link(source,sink) != TRUE) + { + g_printerr("Elements could not be linked.!\n"); + gst_object_unref(pipeline); + return -1; + } + + /* Modify the source's properties */ + g_object_set(source, "pattern", 0 , NULL); + + /* Start playing */ + ret = gst_element_set_state(pipeline, GST_STATE_PLAYING); + if (ret == GST_STATE_CHANGE_FAILURE) + { + g_printerr("Unable to set the pipeline to the playing state. \n"); + gst_object_unref(pipeline); + return -1; + } + + /* Wait until error or EOS */ + bus = gst_element_get_bus (pipeline); + msg = gst_bus_timed_pop_filtered(bus, GST_CLOCK_TIME_NONE, GST_MESSAGE_ERROR | GST_MESSAGE_EOS); + + if (msg != NULL) + { + GError *err; + gchar *debug_info; + + switch (GST_MESSAGE_TYPE(msg)) + { + case GST_MESSAGE_ERROR: + gst_message_parse_error(msg, &err, &debug_info); + g_printerr("Error received from element %s:%s\n",GST_OBJECT_NAME(msg->src),err->message); + g_printerr("Debugging information: %s\n",debug_info ? debug_info : "none"); + g_clear_error(&err); + g_free(debug_info); + break; + case GST_MESSAGE_EOS: + g_print("End-of_Stream reached.\n"); + break; + default: + g_printerr("Unexpected message recevied.\n"); + break; + } + gst_message_unref(msg); + } + + /* Free resources */ + gst_object_unref(bus); + gst_element_set_state(pipeline, GST_STATE_NULL); + gst_object_unref(pipeline); + return 0; +} \ No newline at end of file diff --git a/build/.cmake/api/v1/query/client-vscode/query.json b/build/.cmake/api/v1/query/client-vscode/query.json deleted file mode 100644 index 82bb964..0000000 --- a/build/.cmake/api/v1/query/client-vscode/query.json +++ /dev/null @@ -1 +0,0 @@ -{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/build/.cmake/api/v1/reply/cache-v2-cb2759dadc9ef85d02d0.json b/build/.cmake/api/v1/reply/cache-v2-cb2759dadc9ef85d02d0.json deleted file mode 100644 index d212b38..0000000 --- a/build/.cmake/api/v1/reply/cache-v2-cb2759dadc9ef85d02d0.json +++ /dev/null @@ -1,1203 +0,0 @@ -{ - "entries" : - [ - { - "name" : "BasicTutorial1_BINARY_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld/build" - }, - { - "name" : "BasicTutorial1_SOURCE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld" - }, - { - "name" : "CMAKE_ADDR2LINE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/addr2line" - }, - { - "name" : "CMAKE_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/ar" - }, - { - "name" : "CMAKE_BUILD_TYPE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "STRING", - "value" : "Debug" - }, - { - "name" : "CMAKE_CACHEFILE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "This is the directory where this CMakeCache.txt was created" - } - ], - "type" : "INTERNAL", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld/build" - }, - { - "name" : "CMAKE_CACHE_MAJOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Major version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "3" - }, - { - "name" : "CMAKE_CACHE_MINOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Minor version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "16" - }, - { - "name" : "CMAKE_CACHE_PATCH_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Patch version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "3" - }, - { - "name" : "CMAKE_COLOR_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable/Disable color output during build." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CMAKE_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake executable." - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/cmake" - }, - { - "name" : "CMAKE_CPACK_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cpack program executable." - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/cpack" - }, - { - "name" : "CMAKE_CTEST_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to ctest program executable." - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/ctest" - }, - { - "name" : "CMAKE_CXX_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/aarch64-linux-gnu-g++" - }, - { - "name" : "CMAKE_CXX_COMPILER_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ar-9" - }, - { - "name" : "CMAKE_CXX_COMPILER_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ranlib-9" - }, - { - "name" : "CMAKE_CXX_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_CXX_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O3 -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_C_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/aarch64-linux-gnu-gcc" - }, - { - "name" : "CMAKE_C_COMPILER_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ar-9" - }, - { - "name" : "CMAKE_C_COMPILER_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/gcc-ranlib-9" - }, - { - "name" : "CMAKE_C_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_C_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_C_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_C_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O3 -DNDEBUG" - }, - { - "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_DLLTOOL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_DLLTOOL-NOTFOUND" - }, - { - "name" : "CMAKE_EXECUTABLE_FORMAT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Executable file format" - } - ], - "type" : "INTERNAL", - "value" : "ELF" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "BOOL", - "value" : "TRUE" - }, - { - "name" : "CMAKE_EXTRA_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of external makefile project generator." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator." - } - ], - "type" : "INTERNAL", - "value" : "Unix Makefiles" - }, - { - "name" : "CMAKE_GENERATOR_INSTANCE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Generator instance identifier." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_PLATFORM", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator platform." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_TOOLSET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator toolset." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_HOME_DIRECTORY", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Source directory with the top level CMakeLists.txt file for this project" - } - ], - "type" : "INTERNAL", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld" - }, - { - "name" : "CMAKE_INSTALL_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Install path prefix, prepended onto install directories." - } - ], - "type" : "PATH", - "value" : "/usr/local" - }, - { - "name" : "CMAKE_INSTALL_SO_NO_EXE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Install .so files without execute permission." - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_LINKER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/ld" - }, - { - "name" : "CMAKE_MAKE_PROGRAM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/make" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_NM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/nm" - }, - { - "name" : "CMAKE_NUMBER_OF_MAKEFILES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "number of local generators" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_OBJCOPY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/objcopy" - }, - { - "name" : "CMAKE_OBJDUMP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/objdump" - }, - { - "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Platform information initialized" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_PROJECT_DESCRIPTION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_HOMEPAGE_URL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_NAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "BasicTutorial1" - }, - { - "name" : "CMAKE_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/ranlib" - }, - { - "name" : "CMAKE_READELF", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/readelf" - }, - { - "name" : "CMAKE_ROOT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake installation." - } - ], - "type" : "INTERNAL", - "value" : "/usr/share/cmake-3.16" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SKIP_INSTALL_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_SKIP_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when using shared libraries." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STRIP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "/usr/bin/strip" - }, - { - "name" : "CMAKE_UNAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "uname command" - } - ], - "type" : "INTERNAL", - "value" : "/usr/bin/uname" - }, - { - "name" : "CMAKE_VERBOSE_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "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." - } - ], - "type" : "BOOL", - "value" : "FALSE" - }, - { - "name" : "HelloWrold_BINARY_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld/build" - }, - { - "name" : "HelloWrold_SOURCE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld" - }, - { - "name" : "Project_BINARY_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld/build" - }, - { - "name" : "Project_SOURCE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "/home/autolabor/gstreamer/gst-learn/helloWorld" - } - ], - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } -} diff --git a/build/.cmake/api/v1/reply/cmakeFiles-v1-d67761b2e5052bad380b.json b/build/.cmake/api/v1/reply/cmakeFiles-v1-d67761b2e5052bad380b.json deleted file mode 100644 index 0c11431..0000000 --- a/build/.cmake/api/v1/reply/cmakeFiles-v1-d67761b2e5052bad380b.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "inputs" : - [ - { - "path" : "CMakeLists.txt" - }, - { - "isGenerated" : true, - "path" : "build/CMakeFiles/3.16.3/CMakeSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake" - }, - { - "isGenerated" : true, - "path" : "build/CMakeFiles/3.16.3/CMakeCCompiler.cmake" - }, - { - "isGenerated" : true, - "path" : "build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeGenericSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Platform/Linux.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Platform/UnixPaths.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeCInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Compiler/GNU-C.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Compiler/GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Internal/CMakeCheckCompilerFlag.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-C.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeCommonLanguageInclude.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeCXXInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Compiler/GNU-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Compiler/GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/Platform/Linux-GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "/usr/share/cmake-3.16/Modules/CMakeCommonLanguageInclude.cmake" - } - ], - "kind" : "cmakeFiles", - "paths" : - { - "build" : "/home/autolabor/gstreamer/gst-learn/helloWorld/build", - "source" : "/home/autolabor/gstreamer/gst-learn/helloWorld" - }, - "version" : - { - "major" : 1, - "minor" : 0 - } -} diff --git a/build/.cmake/api/v1/reply/codemodel-v2-5e75d92da5826a660dce.json b/build/.cmake/api/v1/reply/codemodel-v2-5e75d92da5826a660dce.json deleted file mode 100644 index 2701c7a..0000000 --- a/build/.cmake/api/v1/reply/codemodel-v2-5e75d92da5826a660dce.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "configurations" : - [ - { - "directories" : - [ - { - "build" : ".", - "minimumCMakeVersion" : - { - "string" : "3.10" - }, - "projectIndex" : 0, - "source" : ".", - "targetIndexes" : - [ - 0 - ] - } - ], - "name" : "Debug", - "projects" : - [ - { - "directoryIndexes" : - [ - 0 - ], - "name" : "BasicTutorial1", - "targetIndexes" : - [ - 0 - ] - } - ], - "targets" : - [ - { - "directoryIndex" : 0, - "id" : "BasicTutorial1::@6890427a1f51a3e7e1df", - "jsonFile" : "target-BasicTutorial1-Debug-adf069a4e5c732347290.json", - "name" : "BasicTutorial1", - "projectIndex" : 0 - } - ] - } - ], - "kind" : "codemodel", - "paths" : - { - "build" : "/home/autolabor/gstreamer/gst-learn/helloWorld/build", - "source" : "/home/autolabor/gstreamer/gst-learn/helloWorld" - }, - "version" : - { - "major" : 2, - "minor" : 0 - } -} diff --git a/build/.cmake/api/v1/reply/index-2023-01-19T05-16-27-0094.json b/build/.cmake/api/v1/reply/index-2023-01-19T05-16-27-0094.json deleted file mode 100644 index bbdd255..0000000 --- a/build/.cmake/api/v1/reply/index-2023-01-19T05-16-27-0094.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "cmake" : - { - "generator" : - { - "name" : "Unix Makefiles" - }, - "paths" : - { - "cmake" : "/usr/bin/cmake", - "cpack" : "/usr/bin/cpack", - "ctest" : "/usr/bin/ctest", - "root" : "/usr/share/cmake-3.16" - }, - "version" : - { - "isDirty" : false, - "major" : 3, - "minor" : 16, - "patch" : 3, - "string" : "3.16.3", - "suffix" : "" - } - }, - "objects" : - [ - { - "jsonFile" : "codemodel-v2-5e75d92da5826a660dce.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "cache-v2-cb2759dadc9ef85d02d0.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "cmakeFiles-v1-d67761b2e5052bad380b.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 0 - } - } - ], - "reply" : - { - "client-vscode" : - { - "query.json" : - { - "requests" : - [ - { - "kind" : "cache", - "version" : 2 - }, - { - "kind" : "codemodel", - "version" : 2 - }, - { - "kind" : "toolchains", - "version" : 1 - }, - { - "kind" : "cmakeFiles", - "version" : 1 - } - ], - "responses" : - [ - { - "jsonFile" : "cache-v2-cb2759dadc9ef85d02d0.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "codemodel-v2-5e75d92da5826a660dce.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "error" : "unknown request kind 'toolchains'" - }, - { - "jsonFile" : "cmakeFiles-v1-d67761b2e5052bad380b.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 0 - } - } - ] - } - } - } -} diff --git a/build/.cmake/api/v1/reply/target-BasicTutorial1-Debug-adf069a4e5c732347290.json b/build/.cmake/api/v1/reply/target-BasicTutorial1-Debug-adf069a4e5c732347290.json deleted file mode 100644 index 0f87181..0000000 --- a/build/.cmake/api/v1/reply/target-BasicTutorial1-Debug-adf069a4e5c732347290.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "BasicTutorial1" - } - ], - "backtrace" : 1, - "backtraceGraph" : - { - "commands" : - [ - "add_executable", - "include_directories" - ], - "files" : - [ - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - }, - { - "command" : 0, - "file" : 0, - "line" : 9, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 5, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 6, - "parent" : 0 - }, - { - "command" : 1, - "file" : 0, - "line" : 7, - "parent" : 0 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g " - } - ], - "includes" : - [ - { - "backtrace" : 2, - "path" : "/usr/include/gstreamer-1.0" - }, - { - "backtrace" : 3, - "path" : "/usr/include/glib-2.0" - }, - { - "backtrace" : 4, - "path" : "/usr/lib/aarch64-linux-gnu/glib-2.0/include" - } - ], - "language" : "C", - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "BasicTutorial1::@6890427a1f51a3e7e1df", - "link" : - { - "commandFragments" : - [ - { - "fragment" : "-g", - "role" : "flags" - }, - { - "fragment" : "", - "role" : "flags" - }, - { - "fragment" : "-lgstreamer-1.0", - "role" : "libraries" - }, - { - "fragment" : "-lgobject-2.0", - "role" : "libraries" - }, - { - "fragment" : "-lglib-2.0", - "role" : "libraries" - } - ], - "language" : "C" - }, - "name" : "BasicTutorial1", - "nameOnDisk" : "BasicTutorial1", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - } - ], - "sources" : - [ - { - "backtrace" : 1, - "compileGroupIndex" : 0, - "path" : "basic-tutorial-1.c", - "sourceGroupIndex" : 0 - } - ], - "type" : "EXECUTABLE" -} diff --git a/build/BasicTutorial1 b/build/BasicTutorial1 deleted file mode 100755 index cc2f25e..0000000 Binary files a/build/BasicTutorial1 and /dev/null differ diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt index 49ef856..762d4ce 100644 --- a/build/CMakeCache.txt +++ b/build/CMakeCache.txt @@ -15,10 +15,10 @@ ######################## //Value Computed by CMake -BasicTutorial1_BINARY_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld/build +BasicTutorial_BINARY_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld/build //Value Computed by CMake -BasicTutorial1_SOURCE_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld +BasicTutorial_SOURCE_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld //Path to a program. CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line @@ -26,14 +26,15 @@ CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line //Path to a program. CMAKE_AR:FILEPATH=/usr/bin/ar -//No help, variable specified on the command line. -CMAKE_BUILD_TYPE:STRING=Debug +//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 -//No help, variable specified on the command line. -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/aarch64-linux-gnu-g++ +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ //A wrapper around 'ar' adding the appropriate '--plugin' option // for the GCC compiler @@ -58,8 +59,8 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG //Flags used by the CXX compiler during RELWITHDEBINFO builds. CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG -//No help, variable specified on the command line. -CMAKE_C_COMPILER:FILEPATH=/usr/bin/aarch64-linux-gnu-gcc +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc //A wrapper around 'ar' adding the appropriate '--plugin' option // for the GCC compiler @@ -102,8 +103,8 @@ CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during RELWITHDEBINFO builds. CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= -//No help, variable specified on the command line. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE +//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 @@ -150,7 +151,7 @@ CMAKE_PROJECT_DESCRIPTION:STATIC= CMAKE_PROJECT_HOMEPAGE_URL:STATIC= //Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=BasicTutorial1 +CMAKE_PROJECT_NAME:STATIC=BasicTutorial //Path to a program. CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib @@ -214,18 +215,6 @@ CMAKE_STRIP:FILEPATH=/usr/bin/strip // Studio IDE projects all commands are done without /nologo. CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE -//Value Computed by CMake -HelloWrold_BINARY_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld/build - -//Value Computed by CMake -HelloWrold_SOURCE_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld - -//Value Computed by CMake -Project_BINARY_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld/build - -//Value Computed by CMake -Project_SOURCE_DIR:STATIC=/home/autolabor/gstreamer/gst-learn/helloWorld - ######################## # INTERNAL cache entries diff --git a/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake b/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake index bce3e04..92d859a 100644 --- a/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake +++ b/build/CMakeFiles/3.16.3/CMakeCCompiler.cmake @@ -1,4 +1,4 @@ -set(CMAKE_C_COMPILER "/usr/bin/aarch64-linux-gnu-gcc") +set(CMAKE_C_COMPILER "/usr/bin/cc") set(CMAKE_C_COMPILER_ARG1 "") set(CMAKE_C_COMPILER_ID "GNU") set(CMAKE_C_COMPILER_VERSION "9.4.0") diff --git a/build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake index 78098b4..add9542 100644 --- a/build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake +++ b/build/CMakeFiles/3.16.3/CMakeCXXCompiler.cmake @@ -1,4 +1,4 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/aarch64-linux-gnu-g++") +set(CMAKE_CXX_COMPILER "/usr/bin/c++") set(CMAKE_CXX_COMPILER_ARG1 "") set(CMAKE_CXX_COMPILER_ID "GNU") set(CMAKE_CXX_COMPILER_VERSION "9.4.0") diff --git a/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin index 181aa08..fc6c2ae 100755 Binary files a/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_C.bin 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 index 3f7abd3..68fd471 100755 Binary files a/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin and b/build/CMakeFiles/3.16.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/BasicTutorial1.dir/C.includecache b/build/CMakeFiles/BasicTutorial1.dir/C.includecache deleted file mode 100644 index b9ceb35..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/C.includecache +++ /dev/null @@ -1,1516 +0,0 @@ -#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) - -#IncludeRegexScan: ^.*$ - -#IncludeRegexComplain: ^$ - -#IncludeRegexTransform: - -/home/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c -gst/gst.h -- -TargetConditionals.h -- - -/usr/include/glib-2.0/glib-object.h -gobject/gbinding.h -- -gobject/gboxed.h -- -gobject/genums.h -- -gobject/glib-enumtypes.h -- -gobject/gobject.h -- -gobject/gparam.h -- -gobject/gparamspecs.h -- -gobject/gsignal.h -- -gobject/gsourceclosure.h -- -gobject/gtype.h -- -gobject/gtypemodule.h -- -gobject/gtypeplugin.h -- -gobject/gvaluearray.h -- -gobject/gvalue.h -- -gobject/gvaluetypes.h -- -gobject/gobject-autocleanups.h -- - -/usr/include/glib-2.0/glib.h -glib/galloca.h -- -glib/garray.h -- -glib/gasyncqueue.h -- -glib/gatomic.h -- -glib/gbacktrace.h -- -glib/gbase64.h -- -glib/gbitlock.h -- -glib/gbookmarkfile.h -- -glib/gbytes.h -- -glib/gcharset.h -- -glib/gchecksum.h -- -glib/gconvert.h -- -glib/gdataset.h -- -glib/gdate.h -- -glib/gdatetime.h -- -glib/gdir.h -- -glib/genviron.h -- -glib/gerror.h -- -glib/gfileutils.h -- -glib/ggettext.h -- -glib/ghash.h -- -glib/ghmac.h -- -glib/ghook.h -- -glib/ghostutils.h -- -glib/giochannel.h -- -glib/gkeyfile.h -- -glib/glist.h -- -glib/gmacros.h -- -glib/gmain.h -- -glib/gmappedfile.h -- -glib/gmarkup.h -- -glib/gmem.h -- -glib/gmessages.h -- -glib/gnode.h -- -glib/goption.h -- -glib/gpattern.h -- -glib/gpoll.h -- -glib/gprimes.h -- -glib/gqsort.h -- -glib/gquark.h -- -glib/gqueue.h -- -glib/grand.h -- -glib/grcbox.h -- -glib/grefcount.h -- -glib/grefstring.h -- -glib/gregex.h -- -glib/gscanner.h -- -glib/gsequence.h -- -glib/gshell.h -- -glib/gslice.h -- -glib/gslist.h -- -glib/gspawn.h -- -glib/gstrfuncs.h -- -glib/gstringchunk.h -- -glib/gstring.h -- -glib/gtestutils.h -- -glib/gthread.h -- -glib/gthreadpool.h -- -glib/gtimer.h -- -glib/gtimezone.h -- -glib/gtrashstack.h -- -glib/gtree.h -- -glib/gtypes.h -- -glib/gunicode.h -- -glib/gurifuncs.h -- -glib/gutils.h -- -glib/guuid.h -- -glib/gvariant.h -- -glib/gvarianttype.h -- -glib/gversion.h -- -glib/gversionmacros.h -- -glib/gwin32.h -- -glib/deprecated/gallocator.h -- -glib/deprecated/gcache.h -- -glib/deprecated/gcompletion.h -- -glib/deprecated/gmain.h -- -glib/deprecated/grel.h -- -glib/deprecated/gthread.h -- -glib/glib-autocleanups.h -- - -/usr/include/glib-2.0/glib/deprecated/gallocator.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/deprecated/gcache.h -glib/glist.h -- - -/usr/include/glib-2.0/glib/deprecated/gcompletion.h -glib/glist.h -- - -/usr/include/glib-2.0/glib/deprecated/gmain.h -glib/gmain.h -- - -/usr/include/glib-2.0/glib/deprecated/grel.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/deprecated/gthread.h -glib/gthread.h -- -sys/types.h -- -pthread.h -- - -/usr/include/glib-2.0/glib/galloca.h -glib/gtypes.h -- -alloca.h -- -alloca.h -- -malloc.h -- - -/usr/include/glib-2.0/glib/garray.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gasyncqueue.h -glib/gthread.h -- - -/usr/include/glib-2.0/glib/gatomic.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gbacktrace.h -glib/gtypes.h -- -sys/select.h -- -signal.h -- - -/usr/include/glib-2.0/glib/gbase64.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gbitlock.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gbookmarkfile.h -glib/gerror.h -- -time.h -- - -/usr/include/glib-2.0/glib/gbytes.h -glib/gtypes.h -- -glib/garray.h -- - -/usr/include/glib-2.0/glib/gcharset.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gchecksum.h -glib/gtypes.h -- -glib/gbytes.h -- - -/usr/include/glib-2.0/glib/gconvert.h -glib/gerror.h -- - -/usr/include/glib-2.0/glib/gdataset.h -glib/gquark.h -- - -/usr/include/glib-2.0/glib/gdate.h -time.h -- -glib/gtypes.h -- -glib/gquark.h -- - -/usr/include/glib-2.0/glib/gdatetime.h -glib/gtimezone.h -- - -/usr/include/glib-2.0/glib/gdir.h -glib/gerror.h -- -dirent.h -- - -/usr/include/glib-2.0/glib/genviron.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gerror.h -stdarg.h -- -glib/gquark.h -- - -/usr/include/glib-2.0/glib/gfileutils.h -glibconfig.h -- -glib/gerror.h -- - -/usr/include/glib-2.0/glib/ggettext.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/ghash.h -glib/gtypes.h -- -glib/glist.h -- - -/usr/include/glib-2.0/glib/ghmac.h -glib/gtypes.h -- -gchecksum.h -/usr/include/glib-2.0/glib/gchecksum.h - -/usr/include/glib-2.0/glib/ghook.h -glib/gmem.h -- - -/usr/include/glib-2.0/glib/ghostutils.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/giochannel.h -glib/gconvert.h -- -glib/gmain.h -- -glib/gstring.h -- - -/usr/include/glib-2.0/glib/gkeyfile.h -glib/gbytes.h -- -glib/gerror.h -- - -/usr/include/glib-2.0/glib/glib-autocleanups.h - -/usr/include/glib-2.0/glib/glist.h -glib/gmem.h -- -glib/gnode.h -- - -/usr/include/glib-2.0/glib/gmacros.h -stddef.h -- - -/usr/include/glib-2.0/glib/gmain.h -glib/gpoll.h -- -glib/gslist.h -- -glib/gthread.h -- - -/usr/include/glib-2.0/glib/gmappedfile.h -glib/gbytes.h -- -glib/gerror.h -- - -/usr/include/glib-2.0/glib/gmarkup.h -stdarg.h -- -glib/gerror.h -- -glib/gslist.h -- - -/usr/include/glib-2.0/glib/gmem.h -glib/gutils.h -- - -/usr/include/glib-2.0/glib/gmessages.h -stdarg.h -- -glib/gatomic.h -- -glib/gtypes.h -- -glib/gmacros.h -- -glib/gvariant.h -- - -/usr/include/glib-2.0/glib/gnode.h -glib/gmem.h -- - -/usr/include/glib-2.0/glib/goption.h -glib/gerror.h -- -glib/gquark.h -- - -/usr/include/glib-2.0/glib/gpattern.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gpoll.h -glibconfig.h -- -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gprimes.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gqsort.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gquark.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gqueue.h -glib/glist.h -- - -/usr/include/glib-2.0/glib/grand.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/grcbox.h -glib/gmem.h -- - -/usr/include/glib-2.0/glib/grefcount.h -glib/gatomic.h -- -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/grefstring.h -gmem.h -/usr/include/glib-2.0/glib/gmem.h -gmacros.h -/usr/include/glib-2.0/glib/gmacros.h - -/usr/include/glib-2.0/glib/gregex.h -glib/gerror.h -- -glib/gstring.h -- - -/usr/include/glib-2.0/glib/gscanner.h -glib/gdataset.h -- -glib/ghash.h -- - -/usr/include/glib-2.0/glib/gsequence.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gshell.h -glib/gerror.h -- - -/usr/include/glib-2.0/glib/gslice.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gslist.h -glib/gmem.h -- -glib/gnode.h -- - -/usr/include/glib-2.0/glib/gspawn.h -glib/gerror.h -- - -/usr/include/glib-2.0/glib/gstrfuncs.h -stdarg.h -- -glib/gmacros.h -- -glib/gtypes.h -- -glib/gerror.h -- - -/usr/include/glib-2.0/glib/gstring.h -glib/gtypes.h -- -glib/gunicode.h -- -glib/gbytes.h -- -glib/gutils.h -- - -/usr/include/glib-2.0/glib/gstringchunk.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gtestutils.h -glib/gmessages.h -- -glib/gstring.h -- -glib/gerror.h -- -glib/gslist.h -- -string.h -- - -/usr/include/glib-2.0/glib/gthread.h -glib/gatomic.h -- -glib/gerror.h -- -glib/gutils.h -- - -/usr/include/glib-2.0/glib/gthreadpool.h -glib/gthread.h -- - -/usr/include/glib-2.0/glib/gtimer.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gtimezone.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gtrashstack.h -glib/gutils.h -- - -/usr/include/glib-2.0/glib/gtree.h -glib/gnode.h -- - -/usr/include/glib-2.0/glib/gtypes.h -glibconfig.h -- -glib/gmacros.h -- -glib/gversionmacros.h -- -time.h -- - -/usr/include/glib-2.0/glib/gunicode.h -glib/gerror.h -- -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gurifuncs.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gutils.h -glib/gtypes.h -- -stdarg.h -- -stdlib.h -- - -/usr/include/glib-2.0/glib/guuid.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gvariant.h -glib/gvarianttype.h -- -glib/gstring.h -- -glib/gbytes.h -- - -/usr/include/glib-2.0/glib/gvarianttype.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gversion.h -glib/gtypes.h -- - -/usr/include/glib-2.0/glib/gversionmacros.h - -/usr/include/glib-2.0/glib/gwin32.h -glib/gtypes.h -- - -/usr/include/glib-2.0/gobject/gbinding.h -glib.h -- -gobject/gobject.h -- - -/usr/include/glib-2.0/gobject/gboxed.h -gobject/gtype.h -- -gobject/glib-types.h -- - -/usr/include/glib-2.0/gobject/gclosure.h -gobject/gtype.h -- - -/usr/include/glib-2.0/gobject/genums.h -gobject/gtype.h -- - -/usr/include/glib-2.0/gobject/glib-enumtypes.h -glib-object.h -- - -/usr/include/glib-2.0/gobject/glib-types.h -glib.h -- - -/usr/include/glib-2.0/gobject/gmarshal.h - -/usr/include/glib-2.0/gobject/gobject-autocleanups.h - -/usr/include/glib-2.0/gobject/gobject.h -gobject/gtype.h -- -gobject/gvalue.h -- -gobject/gparam.h -- -gobject/gclosure.h -- -gobject/gsignal.h -- -gobject/gboxed.h -- - -/usr/include/glib-2.0/gobject/gparam.h -gobject/gvalue.h -- - -/usr/include/glib-2.0/gobject/gparamspecs.h -gobject/gvalue.h -- -gobject/genums.h -- -gobject/gboxed.h -- -gobject/gobject.h -- - -/usr/include/glib-2.0/gobject/gsignal.h -gobject/gclosure.h -- -gobject/gvalue.h -- -gobject/gparam.h -- -gobject/gmarshal.h -- - -/usr/include/glib-2.0/gobject/gsourceclosure.h -gobject/gclosure.h -- -gobject/glib-types.h -- - -/usr/include/glib-2.0/gobject/gtype.h -glib.h -- - -/usr/include/glib-2.0/gobject/gtypemodule.h -gobject/gobject.h -- -gobject/genums.h -- - -/usr/include/glib-2.0/gobject/gtypeplugin.h -gobject/gtype.h -- - -/usr/include/glib-2.0/gobject/gvalue.h -gobject/gtype.h -- - -/usr/include/glib-2.0/gobject/gvaluearray.h -gobject/gvalue.h -- - -/usr/include/glib-2.0/gobject/gvaluetypes.h -gobject/gvalue.h -- - -/usr/include/gstreamer-1.0/gst/glib-compat.h -glib.h -- - -/usr/include/gstreamer-1.0/gst/gst.h -glib.h -- -gst/glib-compat.h -- -gst/gstenumtypes.h -- -gst/gstversion.h -- -gst/gstatomicqueue.h -- -gst/gstbin.h -- -gst/gstbuffer.h -- -gst/gstbufferlist.h -- -gst/gstbufferpool.h -- -gst/gstcaps.h -- -gst/gstcapsfeatures.h -- -gst/gstchildproxy.h -- -gst/gstclock.h -- -gst/gstcontrolsource.h -- -gst/gstdatetime.h -- -gst/gstdebugutils.h -- -gst/gstdevice.h -- -gst/gstdevicemonitor.h -- -gst/gstdeviceprovider.h -- -gst/gstdynamictypefactory.h -- -gst/gstelement.h -- -gst/gstelementmetadata.h -- -gst/gsterror.h -- -gst/gstevent.h -- -gst/gstghostpad.h -- -gst/gstinfo.h -- -gst/gstiterator.h -- -gst/gstmessage.h -- -gst/gstmemory.h -- -gst/gstmeta.h -- -gst/gstminiobject.h -- -gst/gstobject.h -- -gst/gststreamcollection.h -- -gst/gstpad.h -- -gst/gstparamspecs.h -- -gst/gstpipeline.h -- -gst/gstplugin.h -- -gst/gstpoll.h -- -gst/gstpreset.h -- -gst/gstprotection.h -- -gst/gstquery.h -- -gst/gstregistry.h -- -gst/gstpromise.h -- -gst/gstsample.h -- -gst/gstsegment.h -- -gst/gststreams.h -- -gst/gststructure.h -- -gst/gstsystemclock.h -- -gst/gsttaglist.h -- -gst/gsttagsetter.h -- -gst/gsttask.h -- -gst/gsttaskpool.h -- -gst/gsttoc.h -- -gst/gsttocsetter.h -- -gst/gsttracer.h -- -gst/gsttracerfactory.h -- -gst/gsttracerrecord.h -- -gst/gsttypefind.h -- -gst/gsttypefindfactory.h -- -gst/gsturi.h -- -gst/gstutils.h -- -gst/gstvalue.h -- -gst/gstparse.h -- -gst/gstcompat.h -- - -/usr/include/gstreamer-1.0/gst/gstallocator.h -gst/gstmemory.h -- -gst/gstobject.h -- - -/usr/include/gstreamer-1.0/gst/gstatomicqueue.h -glib.h -- -glib-object.h -- -gst/gstconfig.h -- - -/usr/include/gstreamer-1.0/gst/gstbin.h -gst/gstelement.h -- -gst/gstiterator.h -- -gst/gstbus.h -- - -/usr/include/gstreamer-1.0/gst/gstbuffer.h -gst/gstminiobject.h -- -gst/gstclock.h -- -gst/gstallocator.h -- -gst/gstcaps.h -- -gst/gstmeta.h -- -gst/gstmeta.h -- - -/usr/include/gstreamer-1.0/gst/gstbufferlist.h -gst/gstbuffer.h -- - -/usr/include/gstreamer-1.0/gst/gstbufferpool.h -gst/gstminiobject.h -- -gst/gstpad.h -- -gst/gstbuffer.h -- - -/usr/include/gstreamer-1.0/gst/gstbus.h -gst/gstmessage.h -- -gst/gstclock.h -- - -/usr/include/gstreamer-1.0/gst/gstcaps.h -gst/gstconfig.h -- -gst/gstminiobject.h -- -gst/gststructure.h -- -gst/gstcapsfeatures.h -- -gst/glib-compat.h -- - -/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h -gst/gstconfig.h -- -gst/glib-compat.h -- -glib-object.h -- -glib.h -- - -/usr/include/gstreamer-1.0/gst/gstchildproxy.h -glib-object.h -- -gst/gst.h -- - -/usr/include/gstreamer-1.0/gst/gstclock.h -gst/gstconfig.h -- -glib.h -- -gst/gstobject.h -- - -/usr/include/gstreamer-1.0/gst/gstcompat.h -glib.h -- -gst/gstpad.h -- - -/usr/include/gstreamer-1.0/gst/gstconfig.h - -/usr/include/gstreamer-1.0/gst/gstcontext.h -glib.h -- -gst/gstminiobject.h -- -gst/gststructure.h -- - -/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h -gst/gstconfig.h -- -glib-object.h -- -gst/gstcontrolsource.h -- - -/usr/include/gstreamer-1.0/gst/gstcontrolsource.h -gst/gstconfig.h -- -glib-object.h -- -gst/gstclock.h -- - -/usr/include/gstreamer-1.0/gst/gstdatetime.h -gst/gstconfig.h -- -time.h -- -glib.h -- -glib-object.h -- - -/usr/include/gstreamer-1.0/gst/gstdebugutils.h -glib.h -- -glib-object.h -- -gst/gstconfig.h -- -gst/gstbin.h -- - -/usr/include/gstreamer-1.0/gst/gstdevice.h -gst/gstelement.h -- -gst/gstcaps.h -- - -/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h -gst/gstobject.h -- -gst/gstdevice.h -- -gst/gstdeviceprovider.h -- -gst/gstdeviceproviderfactory.h -- - -/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h -gst/gstelement.h -- -gst/gstdeviceproviderfactory.h -- - -/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h -gst/gstconfig.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- -gst/gstdeviceprovider.h -- - -/usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h -gst/gstconfig.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- - -/usr/include/gstreamer-1.0/gst/gstelement.h -glib.h -- -gst/gstconfig.h -- -gst/gstobject.h -- -gst/gstpad.h -- -gst/gstbus.h -- -gst/gstclock.h -- -gst/gstelementfactory.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- -gst/gstiterator.h -- -gst/gstmessage.h -- -gst/gstquery.h -- -gst/gsttaglist.h -- -gst/gstcontext.h -- - -/usr/include/gstreamer-1.0/gst/gstelementfactory.h -gst/gstconfig.h -- -gst/gstelement.h -- -gst/gstpad.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- -gst/gsturi.h -- - -/usr/include/gstreamer-1.0/gst/gstelementmetadata.h -glib.h -- - -/usr/include/gstreamer-1.0/gst/gstenumtypes.h -glib-object.h -- -gst/gstconfig.h -- - -/usr/include/gstreamer-1.0/gst/gsterror.h -glib.h -- -glib-object.h -- -errno.h -- - -/usr/include/gstreamer-1.0/gst/gstevent.h -gst/gstminiobject.h -- -gst/gstformat.h -- -gst/gstobject.h -- -gst/gstclock.h -- -gst/gststructure.h -- -gst/gsttaglist.h -- -gst/gstsegment.h -- -gst/gstmessage.h -- -gst/gstcontext.h -- -gst/gststreams.h -- -gst/gsttoc.h -- -gst/gststreamcollection.h -- - -/usr/include/gstreamer-1.0/gst/gstformat.h -glib.h -- -gst/gstiterator.h -- - -/usr/include/gstreamer-1.0/gst/gstghostpad.h -gst/gstpad.h -- - -/usr/include/gstreamer-1.0/gst/gstinfo.h -glib.h -- -glib-object.h -- -gst/gstconfig.h -- - -/usr/include/gstreamer-1.0/gst/gstiterator.h -glib-object.h -- -gst/gstconfig.h -- - -/usr/include/gstreamer-1.0/gst/gstmacros.h -glib.h -- - -/usr/include/gstreamer-1.0/gst/gstmemory.h -gst/gstconfig.h -- -glib-object.h -- -gst/gstminiobject.h -- -gst/gstobject.h -- - -/usr/include/gstreamer-1.0/gst/gstmessage.h -glib.h -- -gst/gstminiobject.h -- -gst/gstobject.h -- -gst/gstelement.h -- -gst/gsttaglist.h -- -gst/gststructure.h -- -gst/gstquery.h -- -gst/gsttoc.h -- -gst/gstdevice.h -- -gst/gststreams.h -- -gst/gststreamcollection.h -- -gst/gstquery.h -- - -/usr/include/gstreamer-1.0/gst/gstmeta.h -glib.h -- -gst/gstbuffer.h -- - -/usr/include/gstreamer-1.0/gst/gstminiobject.h -gst/gstconfig.h -- -glib-object.h -- - -/usr/include/gstreamer-1.0/gst/gstobject.h -gst/gstconfig.h -- -glib-object.h -- -gst/gstcontrolbinding.h -- -gst/gstcontrolsource.h -- - -/usr/include/gstreamer-1.0/gst/gstpad.h -gst/gstconfig.h -- -glib.h -- -gst/gstobject.h -- -gst/gstbuffer.h -- -gst/gstbufferlist.h -- -gst/gstcaps.h -- -gst/gstpadtemplate.h -- -gst/gstevent.h -- -gst/gstquery.h -- -gst/gsttask.h -- - -/usr/include/gstreamer-1.0/gst/gstpadtemplate.h -gst/gstconfig.h -- -gst/gstobject.h -- -gst/gstbuffer.h -- -gst/gstcaps.h -- -gst/gstevent.h -- -gst/gstquery.h -- -gst/gsttask.h -- - -/usr/include/gstreamer-1.0/gst/gstparamspecs.h -gst/gstvalue.h -- - -/usr/include/gstreamer-1.0/gst/gstparse.h -gst/gstelement.h -- - -/usr/include/gstreamer-1.0/gst/gstpipeline.h -gst/gstbin.h -- - -/usr/include/gstreamer-1.0/gst/gstplugin.h -gst/gstconfig.h -- -gst/gstobject.h -- -gst/gstmacros.h -- -gst/gststructure.h -- - -/usr/include/gstreamer-1.0/gst/gstpluginfeature.h -glib-object.h -- -gst/gstobject.h -- -gst/gstplugin.h -- - -/usr/include/gstreamer-1.0/gst/gstpoll.h -glib.h -- -glib-object.h -- -gst/gstclock.h -- - -/usr/include/gstreamer-1.0/gst/gstpreset.h -glib-object.h -- -gst/gstconfig.h -- - -/usr/include/gstreamer-1.0/gst/gstpromise.h -gst/gst.h -- - -/usr/include/gstreamer-1.0/gst/gstprotection.h -gst/gst.h -- - -/usr/include/gstreamer-1.0/gst/gstquery.h -glib.h -- -glib-object.h -- -gst/gstconfig.h -- -gst/gstminiobject.h -- -gst/gstiterator.h -- -gst/gststructure.h -- -gst/gstformat.h -- -gst/gstpad.h -- -gst/gstallocator.h -- -gst/gsttoc.h -- -gst/gstcontext.h -- - -/usr/include/gstreamer-1.0/gst/gstregistry.h -gst/gstconfig.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- - -/usr/include/gstreamer-1.0/gst/gstsample.h -gst/gstbuffer.h -- -gst/gstbufferlist.h -- -gst/gstcaps.h -- -gst/gstsegment.h -- - -/usr/include/gstreamer-1.0/gst/gstsegment.h -gst/gstformat.h -- - -/usr/include/gstreamer-1.0/gst/gststreamcollection.h -gst/gstobject.h -- -gst/gststreamcollection.h -- -gst/gststreams.h -- - -/usr/include/gstreamer-1.0/gst/gststreams.h -gst/gstobject.h -- -gst/gstevent.h -- - -/usr/include/gstreamer-1.0/gst/gststructure.h -gst/gstconfig.h -- -glib-object.h -- -gst/gstclock.h -- -gst/gstdatetime.h -- -gst/glib-compat.h -- - -/usr/include/gstreamer-1.0/gst/gstsystemclock.h -gst/gstclock.h -- - -/usr/include/gstreamer-1.0/gst/gsttaglist.h -gst/gstdatetime.h -- -gst/gstsample.h -- -gst/gstbuffer.h -- -gst/glib-compat.h -- - -/usr/include/gstreamer-1.0/gst/gsttagsetter.h -gst/gst.h -- - -/usr/include/gstreamer-1.0/gst/gsttask.h -gst/gstobject.h -- -gst/gsttaskpool.h -- - -/usr/include/gstreamer-1.0/gst/gsttaskpool.h -gst/gstobject.h -- - -/usr/include/gstreamer-1.0/gst/gsttoc.h -gst/gstconfig.h -- -gst/gstminiobject.h -- -gst/gststructure.h -- -gst/gsttaglist.h -- -gst/gstformat.h -- - -/usr/include/gstreamer-1.0/gst/gsttocsetter.h -gst/gst.h -- - -/usr/include/gstreamer-1.0/gst/gsttracer.h -glib.h -- -glib-object.h -- -gst/gstobject.h -- -gst/gstconfig.h -- - -/usr/include/gstreamer-1.0/gst/gsttracerfactory.h -gst/gstcaps.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- - -/usr/include/gstreamer-1.0/gst/gsttracerrecord.h -gst/gstobject.h -- - -/usr/include/gstreamer-1.0/gst/gsttypefind.h -gst/gstcaps.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- - -/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h -gst/gstcaps.h -- -gst/gstplugin.h -- -gst/gstpluginfeature.h -- -gst/gsttypefind.h -- - -/usr/include/gstreamer-1.0/gst/gsturi.h -glib.h -- -glib-object.h -- -gst/gstconfig.h -- -gst/gstelement.h -- -gstminiobject.h -/usr/include/gstreamer-1.0/gst/gstminiobject.h - -/usr/include/gstreamer-1.0/gst/gstutils.h -glib.h -- -gst/gstconfig.h -- -gst/gstbin.h -- -gst/gstparse.h -- - -/usr/include/gstreamer-1.0/gst/gstvalue.h -gst/gstconfig.h -- -gst/gstcaps.h -- -gst/gststructure.h -- -gst/gstcapsfeatures.h -- - -/usr/include/gstreamer-1.0/gst/gstversion.h -glib.h -- - -/usr/lib/aarch64-linux-gnu/glib-2.0/include/glibconfig.h -glib/gmacros.h -- -limits.h -- -float.h -- - diff --git a/build/CMakeFiles/BasicTutorial1.dir/DependInfo.cmake b/build/CMakeFiles/BasicTutorial1.dir/DependInfo.cmake deleted file mode 100644 index 38c88b8..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ -# 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/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c" "/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o" - ) -set(CMAKE_C_COMPILER_ID "GNU") - -# The include file search paths: -set(CMAKE_C_TARGET_INCLUDE_PATH - "/usr/include/gstreamer-1.0" - "/usr/include/glib-2.0" - "/usr/lib/aarch64-linux-gnu/glib-2.0/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/CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o b/build/CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o deleted file mode 100644 index a2b2f0e..0000000 Binary files a/build/CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o and /dev/null differ diff --git a/build/CMakeFiles/BasicTutorial1.dir/build.make b/build/CMakeFiles/BasicTutorial1.dir/build.make deleted file mode 100644 index 8d07a88..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/build.make +++ /dev/null @@ -1,98 +0,0 @@ -# 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/autolabor/gstreamer/gst-learn/helloWorld - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/autolabor/gstreamer/gst-learn/helloWorld/build - -# Include any dependencies generated for this target. -include CMakeFiles/BasicTutorial1.dir/depend.make - -# Include the progress variables for this target. -include CMakeFiles/BasicTutorial1.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/BasicTutorial1.dir/flags.make - -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: CMakeFiles/BasicTutorial1.dir/flags.make -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: ../basic-tutorial-1.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o" - /usr/bin/aarch64-linux-gnu-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o -c /home/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c - -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.i" - /usr/bin/aarch64-linux-gnu-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c > CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.i - -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.s" - /usr/bin/aarch64-linux-gnu-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c -o CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.s - -# Object files for target BasicTutorial1 -BasicTutorial1_OBJECTS = \ -"CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o" - -# External object files for target BasicTutorial1 -BasicTutorial1_EXTERNAL_OBJECTS = - -BasicTutorial1: CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o -BasicTutorial1: CMakeFiles/BasicTutorial1.dir/build.make -BasicTutorial1: CMakeFiles/BasicTutorial1.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable BasicTutorial1" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/BasicTutorial1.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/BasicTutorial1.dir/build: BasicTutorial1 - -.PHONY : CMakeFiles/BasicTutorial1.dir/build - -CMakeFiles/BasicTutorial1.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/BasicTutorial1.dir/cmake_clean.cmake -.PHONY : CMakeFiles/BasicTutorial1.dir/clean - -CMakeFiles/BasicTutorial1.dir/depend: - cd /home/autolabor/gstreamer/gst-learn/helloWorld/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/autolabor/gstreamer/gst-learn/helloWorld /home/autolabor/gstreamer/gst-learn/helloWorld /home/autolabor/gstreamer/gst-learn/helloWorld/build /home/autolabor/gstreamer/gst-learn/helloWorld/build /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/BasicTutorial1.dir/DependInfo.cmake --color=$(COLOR) -.PHONY : CMakeFiles/BasicTutorial1.dir/depend - diff --git a/build/CMakeFiles/BasicTutorial1.dir/cmake_clean.cmake b/build/CMakeFiles/BasicTutorial1.dir/cmake_clean.cmake deleted file mode 100644 index b66a084..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "BasicTutorial1" - "BasicTutorial1.pdb" - "CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o" -) - -# Per-language clean rules from dependency scanning. -foreach(lang C) - include(CMakeFiles/BasicTutorial1.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/BasicTutorial1.dir/depend.internal b/build/CMakeFiles/BasicTutorial1.dir/depend.internal deleted file mode 100644 index 8461797..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/depend.internal +++ /dev/null @@ -1,181 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.16 - -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o - /home/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c - /usr/include/glib-2.0/glib-object.h - /usr/include/glib-2.0/glib.h - /usr/include/glib-2.0/glib/deprecated/gallocator.h - /usr/include/glib-2.0/glib/deprecated/gcache.h - /usr/include/glib-2.0/glib/deprecated/gcompletion.h - /usr/include/glib-2.0/glib/deprecated/gmain.h - /usr/include/glib-2.0/glib/deprecated/grel.h - /usr/include/glib-2.0/glib/deprecated/gthread.h - /usr/include/glib-2.0/glib/galloca.h - /usr/include/glib-2.0/glib/garray.h - /usr/include/glib-2.0/glib/gasyncqueue.h - /usr/include/glib-2.0/glib/gatomic.h - /usr/include/glib-2.0/glib/gbacktrace.h - /usr/include/glib-2.0/glib/gbase64.h - /usr/include/glib-2.0/glib/gbitlock.h - /usr/include/glib-2.0/glib/gbookmarkfile.h - /usr/include/glib-2.0/glib/gbytes.h - /usr/include/glib-2.0/glib/gcharset.h - /usr/include/glib-2.0/glib/gchecksum.h - /usr/include/glib-2.0/glib/gconvert.h - /usr/include/glib-2.0/glib/gdataset.h - /usr/include/glib-2.0/glib/gdate.h - /usr/include/glib-2.0/glib/gdatetime.h - /usr/include/glib-2.0/glib/gdir.h - /usr/include/glib-2.0/glib/genviron.h - /usr/include/glib-2.0/glib/gerror.h - /usr/include/glib-2.0/glib/gfileutils.h - /usr/include/glib-2.0/glib/ggettext.h - /usr/include/glib-2.0/glib/ghash.h - /usr/include/glib-2.0/glib/ghmac.h - /usr/include/glib-2.0/glib/ghook.h - /usr/include/glib-2.0/glib/ghostutils.h - /usr/include/glib-2.0/glib/giochannel.h - /usr/include/glib-2.0/glib/gkeyfile.h - /usr/include/glib-2.0/glib/glib-autocleanups.h - /usr/include/glib-2.0/glib/glist.h - /usr/include/glib-2.0/glib/gmacros.h - /usr/include/glib-2.0/glib/gmain.h - /usr/include/glib-2.0/glib/gmappedfile.h - /usr/include/glib-2.0/glib/gmarkup.h - /usr/include/glib-2.0/glib/gmem.h - /usr/include/glib-2.0/glib/gmessages.h - /usr/include/glib-2.0/glib/gnode.h - /usr/include/glib-2.0/glib/goption.h - /usr/include/glib-2.0/glib/gpattern.h - /usr/include/glib-2.0/glib/gpoll.h - /usr/include/glib-2.0/glib/gprimes.h - /usr/include/glib-2.0/glib/gqsort.h - /usr/include/glib-2.0/glib/gquark.h - /usr/include/glib-2.0/glib/gqueue.h - /usr/include/glib-2.0/glib/grand.h - /usr/include/glib-2.0/glib/grcbox.h - /usr/include/glib-2.0/glib/grefcount.h - /usr/include/glib-2.0/glib/grefstring.h - /usr/include/glib-2.0/glib/gregex.h - /usr/include/glib-2.0/glib/gscanner.h - /usr/include/glib-2.0/glib/gsequence.h - /usr/include/glib-2.0/glib/gshell.h - /usr/include/glib-2.0/glib/gslice.h - /usr/include/glib-2.0/glib/gslist.h - /usr/include/glib-2.0/glib/gspawn.h - /usr/include/glib-2.0/glib/gstrfuncs.h - /usr/include/glib-2.0/glib/gstring.h - /usr/include/glib-2.0/glib/gstringchunk.h - /usr/include/glib-2.0/glib/gtestutils.h - /usr/include/glib-2.0/glib/gthread.h - /usr/include/glib-2.0/glib/gthreadpool.h - /usr/include/glib-2.0/glib/gtimer.h - /usr/include/glib-2.0/glib/gtimezone.h - /usr/include/glib-2.0/glib/gtrashstack.h - /usr/include/glib-2.0/glib/gtree.h - /usr/include/glib-2.0/glib/gtypes.h - /usr/include/glib-2.0/glib/gunicode.h - /usr/include/glib-2.0/glib/gurifuncs.h - /usr/include/glib-2.0/glib/gutils.h - /usr/include/glib-2.0/glib/guuid.h - /usr/include/glib-2.0/glib/gvariant.h - /usr/include/glib-2.0/glib/gvarianttype.h - /usr/include/glib-2.0/glib/gversion.h - /usr/include/glib-2.0/glib/gversionmacros.h - /usr/include/glib-2.0/glib/gwin32.h - /usr/include/glib-2.0/gobject/gbinding.h - /usr/include/glib-2.0/gobject/gboxed.h - /usr/include/glib-2.0/gobject/gclosure.h - /usr/include/glib-2.0/gobject/genums.h - /usr/include/glib-2.0/gobject/glib-enumtypes.h - /usr/include/glib-2.0/gobject/glib-types.h - /usr/include/glib-2.0/gobject/gmarshal.h - /usr/include/glib-2.0/gobject/gobject-autocleanups.h - /usr/include/glib-2.0/gobject/gobject.h - /usr/include/glib-2.0/gobject/gparam.h - /usr/include/glib-2.0/gobject/gparamspecs.h - /usr/include/glib-2.0/gobject/gsignal.h - /usr/include/glib-2.0/gobject/gsourceclosure.h - /usr/include/glib-2.0/gobject/gtype.h - /usr/include/glib-2.0/gobject/gtypemodule.h - /usr/include/glib-2.0/gobject/gtypeplugin.h - /usr/include/glib-2.0/gobject/gvalue.h - /usr/include/glib-2.0/gobject/gvaluearray.h - /usr/include/glib-2.0/gobject/gvaluetypes.h - /usr/include/gstreamer-1.0/gst/glib-compat.h - /usr/include/gstreamer-1.0/gst/gst.h - /usr/include/gstreamer-1.0/gst/gstallocator.h - /usr/include/gstreamer-1.0/gst/gstatomicqueue.h - /usr/include/gstreamer-1.0/gst/gstbin.h - /usr/include/gstreamer-1.0/gst/gstbuffer.h - /usr/include/gstreamer-1.0/gst/gstbufferlist.h - /usr/include/gstreamer-1.0/gst/gstbufferpool.h - /usr/include/gstreamer-1.0/gst/gstbus.h - /usr/include/gstreamer-1.0/gst/gstcaps.h - /usr/include/gstreamer-1.0/gst/gstcapsfeatures.h - /usr/include/gstreamer-1.0/gst/gstchildproxy.h - /usr/include/gstreamer-1.0/gst/gstclock.h - /usr/include/gstreamer-1.0/gst/gstcompat.h - /usr/include/gstreamer-1.0/gst/gstconfig.h - /usr/include/gstreamer-1.0/gst/gstcontext.h - /usr/include/gstreamer-1.0/gst/gstcontrolbinding.h - /usr/include/gstreamer-1.0/gst/gstcontrolsource.h - /usr/include/gstreamer-1.0/gst/gstdatetime.h - /usr/include/gstreamer-1.0/gst/gstdebugutils.h - /usr/include/gstreamer-1.0/gst/gstdevice.h - /usr/include/gstreamer-1.0/gst/gstdevicemonitor.h - /usr/include/gstreamer-1.0/gst/gstdeviceprovider.h - /usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h - /usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h - /usr/include/gstreamer-1.0/gst/gstelement.h - /usr/include/gstreamer-1.0/gst/gstelementfactory.h - /usr/include/gstreamer-1.0/gst/gstelementmetadata.h - /usr/include/gstreamer-1.0/gst/gstenumtypes.h - /usr/include/gstreamer-1.0/gst/gsterror.h - /usr/include/gstreamer-1.0/gst/gstevent.h - /usr/include/gstreamer-1.0/gst/gstformat.h - /usr/include/gstreamer-1.0/gst/gstghostpad.h - /usr/include/gstreamer-1.0/gst/gstinfo.h - /usr/include/gstreamer-1.0/gst/gstiterator.h - /usr/include/gstreamer-1.0/gst/gstmacros.h - /usr/include/gstreamer-1.0/gst/gstmemory.h - /usr/include/gstreamer-1.0/gst/gstmessage.h - /usr/include/gstreamer-1.0/gst/gstmeta.h - /usr/include/gstreamer-1.0/gst/gstminiobject.h - /usr/include/gstreamer-1.0/gst/gstobject.h - /usr/include/gstreamer-1.0/gst/gstpad.h - /usr/include/gstreamer-1.0/gst/gstpadtemplate.h - /usr/include/gstreamer-1.0/gst/gstparamspecs.h - /usr/include/gstreamer-1.0/gst/gstparse.h - /usr/include/gstreamer-1.0/gst/gstpipeline.h - /usr/include/gstreamer-1.0/gst/gstplugin.h - /usr/include/gstreamer-1.0/gst/gstpluginfeature.h - /usr/include/gstreamer-1.0/gst/gstpoll.h - /usr/include/gstreamer-1.0/gst/gstpreset.h - /usr/include/gstreamer-1.0/gst/gstpromise.h - /usr/include/gstreamer-1.0/gst/gstprotection.h - /usr/include/gstreamer-1.0/gst/gstquery.h - /usr/include/gstreamer-1.0/gst/gstregistry.h - /usr/include/gstreamer-1.0/gst/gstsample.h - /usr/include/gstreamer-1.0/gst/gstsegment.h - /usr/include/gstreamer-1.0/gst/gststreamcollection.h - /usr/include/gstreamer-1.0/gst/gststreams.h - /usr/include/gstreamer-1.0/gst/gststructure.h - /usr/include/gstreamer-1.0/gst/gstsystemclock.h - /usr/include/gstreamer-1.0/gst/gsttaglist.h - /usr/include/gstreamer-1.0/gst/gsttagsetter.h - /usr/include/gstreamer-1.0/gst/gsttask.h - /usr/include/gstreamer-1.0/gst/gsttaskpool.h - /usr/include/gstreamer-1.0/gst/gsttoc.h - /usr/include/gstreamer-1.0/gst/gsttocsetter.h - /usr/include/gstreamer-1.0/gst/gsttracer.h - /usr/include/gstreamer-1.0/gst/gsttracerfactory.h - /usr/include/gstreamer-1.0/gst/gsttracerrecord.h - /usr/include/gstreamer-1.0/gst/gsttypefind.h - /usr/include/gstreamer-1.0/gst/gsttypefindfactory.h - /usr/include/gstreamer-1.0/gst/gsturi.h - /usr/include/gstreamer-1.0/gst/gstutils.h - /usr/include/gstreamer-1.0/gst/gstvalue.h - /usr/include/gstreamer-1.0/gst/gstversion.h - /usr/lib/aarch64-linux-gnu/glib-2.0/include/glibconfig.h diff --git a/build/CMakeFiles/BasicTutorial1.dir/depend.make b/build/CMakeFiles/BasicTutorial1.dir/depend.make deleted file mode 100644 index 42c9280..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/depend.make +++ /dev/null @@ -1,181 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.16 - -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: ../basic-tutorial-1.c -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib-object.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/deprecated/gallocator.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/deprecated/gcache.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/deprecated/gcompletion.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/deprecated/gmain.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/deprecated/grel.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/deprecated/gthread.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/galloca.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/garray.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gasyncqueue.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gatomic.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gbacktrace.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gbase64.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gbitlock.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gbookmarkfile.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gbytes.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gcharset.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gchecksum.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gconvert.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gdataset.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gdate.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gdatetime.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gdir.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/genviron.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gerror.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gfileutils.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/ggettext.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/ghash.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/ghmac.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/ghook.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/ghostutils.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/giochannel.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gkeyfile.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/glib-autocleanups.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/glist.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gmacros.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gmain.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gmappedfile.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gmarkup.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gmem.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gmessages.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gnode.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/goption.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gpattern.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gpoll.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gprimes.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gqsort.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gquark.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gqueue.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/grand.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/grcbox.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/grefcount.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/grefstring.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gregex.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gscanner.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gsequence.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gshell.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gslice.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gslist.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gspawn.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gstrfuncs.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gstring.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gstringchunk.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gtestutils.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gthread.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gthreadpool.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gtimer.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gtimezone.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gtrashstack.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gtree.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gtypes.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gunicode.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gurifuncs.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gutils.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/guuid.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gvariant.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gvarianttype.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gversion.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gversionmacros.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/glib/gwin32.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gbinding.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gboxed.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gclosure.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/genums.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/glib-enumtypes.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/glib-types.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gmarshal.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gobject-autocleanups.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gobject.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gparam.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gparamspecs.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gsignal.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gsourceclosure.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gtype.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gtypemodule.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gtypeplugin.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gvalue.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gvaluearray.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/glib-2.0/gobject/gvaluetypes.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/glib-compat.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gst.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstallocator.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstatomicqueue.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstbin.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstbuffer.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstbufferlist.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstbufferpool.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstbus.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstcaps.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstcapsfeatures.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstchildproxy.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstclock.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstcompat.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstconfig.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstcontext.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstcontrolbinding.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstcontrolsource.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstdatetime.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstdebugutils.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstdevice.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstdevicemonitor.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstdeviceprovider.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstelement.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstelementfactory.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstelementmetadata.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstenumtypes.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsterror.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstevent.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstformat.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstghostpad.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstinfo.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstiterator.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstmacros.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstmemory.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstmessage.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstmeta.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstminiobject.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstobject.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstpad.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstpadtemplate.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstparamspecs.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstparse.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstpipeline.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstplugin.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstpluginfeature.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstpoll.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstpreset.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstpromise.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstprotection.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstquery.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstregistry.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstsample.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstsegment.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gststreamcollection.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gststreams.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gststructure.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstsystemclock.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttaglist.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttagsetter.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttask.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttaskpool.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttoc.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttocsetter.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttracer.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttracerfactory.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttracerrecord.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttypefind.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsttypefindfactory.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gsturi.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstutils.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstvalue.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/include/gstreamer-1.0/gst/gstversion.h -CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o: /usr/lib/aarch64-linux-gnu/glib-2.0/include/glibconfig.h - diff --git a/build/CMakeFiles/BasicTutorial1.dir/flags.make b/build/CMakeFiles/BasicTutorial1.dir/flags.make deleted file mode 100644 index 4972f3f..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.16 - -# compile C with /usr/bin/aarch64-linux-gnu-gcc -C_FLAGS = -g - -C_DEFINES = - -C_INCLUDES = -I/usr/include/gstreamer-1.0 -I/usr/include/glib-2.0 -I/usr/lib/aarch64-linux-gnu/glib-2.0/include - diff --git a/build/CMakeFiles/BasicTutorial1.dir/link.txt b/build/CMakeFiles/BasicTutorial1.dir/link.txt deleted file mode 100644 index 7301712..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/aarch64-linux-gnu-gcc -g CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o -o BasicTutorial1 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0 diff --git a/build/CMakeFiles/BasicTutorial1.dir/progress.make b/build/CMakeFiles/BasicTutorial1.dir/progress.make deleted file mode 100644 index abadeb0..0000000 --- a/build/CMakeFiles/BasicTutorial1.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 - diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log index 0426b8d..f8046e4 100644 --- a/build/CMakeFiles/CMakeOutput.log +++ b/build/CMakeFiles/CMakeOutput.log @@ -1,6 +1,6 @@ The system is: Linux - 5.15.0-58-generic - aarch64 Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /usr/bin/aarch64-linux-gnu-gcc +Compiler: /usr/bin/cc Build flags: Id flags: @@ -13,7 +13,7 @@ Compilation of the C compiler identification source "CMakeCCompilerId.c" produce The C compiler identification is GNU, found in "/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/3.16.3/CompilerIdC/a.out" Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /usr/bin/aarch64-linux-gnu-g++ +Compiler: /usr/bin/c++ Build flags: Id flags: @@ -28,32 +28,32 @@ The CXX compiler identification is GNU, found in "/home/autolabor/gstreamer/gst- Determining if the C compiler works passed with the following output: Change Dir: /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/make cmTC_a37ef/fast && /usr/bin/make -f CMakeFiles/cmTC_a37ef.dir/build.make CMakeFiles/cmTC_a37ef.dir/build -make[1]: Entering directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_a37ef.dir/testCCompiler.c.o -/usr/bin/aarch64-linux-gnu-gcc -o CMakeFiles/cmTC_a37ef.dir/testCCompiler.c.o -c /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_a37ef -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a37ef.dir/link.txt --verbose=1 -/usr/bin/aarch64-linux-gnu-gcc -rdynamic CMakeFiles/cmTC_a37ef.dir/testCCompiler.c.o -o cmTC_a37ef -make[1]: Leaving directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' +Run Build Command(s):/usr/bin/make cmTC_af257/fast && /usr/bin/make -f CMakeFiles/cmTC_af257.dir/build.make CMakeFiles/cmTC_af257.dir/build +make[1]: 进入目录“/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_af257.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_af257.dir/testCCompiler.c.o -c /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_af257 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af257.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_af257.dir/testCCompiler.c.o -o cmTC_af257 +make[1]: 离开目录“/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp” Detecting C compiler ABI info compiled with the following output: Change Dir: /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/make cmTC_375dd/fast && /usr/bin/make -f CMakeFiles/cmTC_375dd.dir/build.make CMakeFiles/cmTC_375dd.dir/build +Run Build Command(s):/usr/bin/make cmTC_21ff2/fast && /usr/bin/make -f CMakeFiles/cmTC_21ff2.dir/build.make CMakeFiles/cmTC_21ff2.dir/build make[1]: Entering directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -/usr/bin/aarch64-linux-gnu-gcc -v -o CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c +Building C object CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c Using built-in specs. -COLLECT_GCC=/usr/bin/aarch64-linux-gnu-gcc +COLLECT_GCC=/usr/bin/cc Target: aarch64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu Thread model: posix gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' - /usr/lib/gcc/aarch64-linux-gnu/9/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccSMP7ZF.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/9/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc8uJv0M.s GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu) compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP @@ -73,17 +73,17 @@ GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 6a3864a8c3fe8bbb972fb5dbcb1f67d4 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o /tmp/ccSMP7ZF.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o /tmp/cc8uJv0M.s GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34 COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' -Linking C executable cmTC_375dd -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_375dd.dir/link.txt --verbose=1 -/usr/bin/aarch64-linux-gnu-gcc -v -rdynamic CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -o cmTC_375dd +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64' +Linking C executable cmTC_21ff2 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21ff2.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o -o cmTC_21ff2 Using built-in specs. -COLLECT_GCC=/usr/bin/aarch64-linux-gnu-gcc +COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper Target: aarch64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu @@ -91,9 +91,9 @@ Thread model: posix gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_375dd' '-mlittle-endian' '-mabi=lp64' - /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cchmSl36.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_375dd /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_375dd' '-mlittle-endian' '-mabi=lp64' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_21ff2' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cckBzKlh.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_21ff2 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_21ff2' '-mlittle-endian' '-mabi=lp64' make[1]: Leaving directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' @@ -117,18 +117,18 @@ Parsed C implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ignore line: [Change Dir: /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/make cmTC_375dd/fast && /usr/bin/make -f CMakeFiles/cmTC_375dd.dir/build.make CMakeFiles/cmTC_375dd.dir/build] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_21ff2/fast && /usr/bin/make -f CMakeFiles/cmTC_21ff2.dir/build.make CMakeFiles/cmTC_21ff2.dir/build] ignore line: [make[1]: Entering directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/aarch64-linux-gnu-gcc -v -o CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c] + ignore line: [Building C object CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_21ff2.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/aarch64-linux-gnu-gcc] + ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [Target: aarch64-linux-gnu] ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] ignore line: [Thread model: posix] ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'] - ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccSMP7ZF.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/cc1 -quiet -v -imultiarch aarch64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc8uJv0M.s] ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)] ignore line: [ compiled by GNU C version 9.4.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: [] @@ -148,17 +148,17 @@ Parsed C implicit link information from above output: ignore line: [] ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] ignore line: [Compiler executable checksum: 6a3864a8c3fe8bbb972fb5dbcb1f67d4] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o /tmp/ccSMP7ZF.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o /tmp/cc8uJv0M.s] ignore line: [GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34] ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'] - ignore line: [Linking C executable cmTC_375dd] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_375dd.dir/link.txt --verbose=1] - ignore line: [/usr/bin/aarch64-linux-gnu-gcc -v -rdynamic CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -o cmTC_375dd ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o' '-c' '-mlittle-endian' '-mabi=lp64'] + ignore line: [Linking C executable cmTC_21ff2] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21ff2.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o -o cmTC_21ff2 ] ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/aarch64-linux-gnu-gcc] + ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper] ignore line: [Target: aarch64-linux-gnu] ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] @@ -166,13 +166,13 @@ Parsed C implicit link information from above output: ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_375dd' '-mlittle-endian' '-mabi=lp64'] - link line: [ /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cchmSl36.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_375dd /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_21ff2' '-mlittle-endian' '-mabi=lp64'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cckBzKlh.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_21ff2 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o] arg [/usr/lib/gcc/aarch64-linux-gnu/9/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cchmSl36.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cckBzKlh.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -182,7 +182,6 @@ Parsed C implicit link information from above output: arg [--eh-frame-hdr] ==> ignore arg [--hash-style=gnu] ==> ignore arg [--as-needed] ==> ignore - arg [-export-dynamic] ==> ignore arg [-dynamic-linker] ==> ignore arg [/lib/ld-linux-aarch64.so.1] ==> ignore arg [-X] ==> ignore @@ -193,7 +192,7 @@ Parsed C implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_375dd] ==> ignore + arg [cmTC_21ff2] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o] ==> ignore @@ -205,7 +204,7 @@ Parsed C implicit link information from above output: arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../..] - arg [CMakeFiles/cmTC_375dd.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_21ff2.dir/CMakeCCompilerABI.c.o] ==> ignore arg [-lgcc] ==> lib [gcc] arg [--push-state] ==> ignore arg [--as-needed] ==> ignore @@ -235,32 +234,32 @@ Parsed C implicit link information from above output: Determining if the CXX compiler works passed with the following output: Change Dir: /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/make cmTC_2d9f8/fast && /usr/bin/make -f CMakeFiles/cmTC_2d9f8.dir/build.make CMakeFiles/cmTC_2d9f8.dir/build -make[1]: Entering directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_2d9f8.dir/testCXXCompiler.cxx.o -/usr/bin/aarch64-linux-gnu-g++ -o CMakeFiles/cmTC_2d9f8.dir/testCXXCompiler.cxx.o -c /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_2d9f8 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2d9f8.dir/link.txt --verbose=1 -/usr/bin/aarch64-linux-gnu-g++ -rdynamic CMakeFiles/cmTC_2d9f8.dir/testCXXCompiler.cxx.o -o cmTC_2d9f8 -make[1]: Leaving directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' +Run Build Command(s):/usr/bin/make cmTC_0536b/fast && /usr/bin/make -f CMakeFiles/cmTC_0536b.dir/build.make CMakeFiles/cmTC_0536b.dir/build +make[1]: 进入目录“/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_0536b.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_0536b.dir/testCXXCompiler.cxx.o -c /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_0536b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0536b.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_0536b.dir/testCXXCompiler.cxx.o -o cmTC_0536b +make[1]: 离开目录“/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp” Detecting CXX compiler ABI info compiled with the following output: Change Dir: /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/make cmTC_ee2a0/fast && /usr/bin/make -f CMakeFiles/cmTC_ee2a0.dir/build.make CMakeFiles/cmTC_ee2a0.dir/build +Run Build Command(s):/usr/bin/make cmTC_06888/fast && /usr/bin/make -f CMakeFiles/cmTC_06888.dir/build.make CMakeFiles/cmTC_06888.dir/build make[1]: Entering directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/aarch64-linux-gnu-g++ -v -o CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp +Building CXX object CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp Using built-in specs. -COLLECT_GCC=/usr/bin/aarch64-linux-gnu-g++ +COLLECT_GCC=/usr/bin/c++ Target: aarch64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu Thread model: posix gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' - /usr/lib/gcc/aarch64-linux-gnu/9/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc94RaVM.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/9/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccjT5eCR.s GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu) compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP @@ -284,17 +283,17 @@ GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: 4d0ffd0faaba59e19a04d931506edddd -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' - as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc94RaVM.s +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' + as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjT5eCR.s GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34 COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' -Linking CXX executable cmTC_ee2a0 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ee2a0.dir/link.txt --verbose=1 -/usr/bin/aarch64-linux-gnu-g++ -v -rdynamic CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_ee2a0 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' +Linking CXX executable cmTC_06888 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06888.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_06888 Using built-in specs. -COLLECT_GCC=/usr/bin/aarch64-linux-gnu-g++ +COLLECT_GCC=/usr/bin/c++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper Target: aarch64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu @@ -302,9 +301,9 @@ Thread model: posix gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_ee2a0' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' - /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cclUIvRk.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_ee2a0 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_ee2a0' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_06888' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' + /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccXY6Gfj.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_06888 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_06888' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64' make[1]: Leaving directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp' @@ -334,18 +333,18 @@ Parsed CXX implicit link information from above output: link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ignore line: [Change Dir: /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/make cmTC_ee2a0/fast && /usr/bin/make -f CMakeFiles/cmTC_ee2a0.dir/build.make CMakeFiles/cmTC_ee2a0.dir/build] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_06888/fast && /usr/bin/make -f CMakeFiles/cmTC_06888.dir/build.make CMakeFiles/cmTC_06888.dir/build] ignore line: [make[1]: Entering directory '/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/aarch64-linux-gnu-g++ -v -o CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Building CXX object CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_06888.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/aarch64-linux-gnu-g++] + ignore line: [COLLECT_GCC=/usr/bin/c++] ignore line: [Target: aarch64-linux-gnu] ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] ignore line: [Thread model: posix] ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] - ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/cc94RaVM.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] + ignore line: [ /usr/lib/gcc/aarch64-linux-gnu/9/cc1plus -quiet -v -imultiarch aarch64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mlittle-endian -mabi=lp64 -auxbase-strip CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -o /tmp/ccjT5eCR.s] ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (aarch64-linux-gnu)] ignore line: [ compiled by GNU C version 9.4.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: [] @@ -369,17 +368,17 @@ Parsed CXX implicit link information from above output: ignore line: [] ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] ignore line: [Compiler executable checksum: 4d0ffd0faaba59e19a04d931506edddd] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] - ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc94RaVM.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] + ignore line: [ as -v -EL -mabi=lp64 -o CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjT5eCR.s] ignore line: [GNU assembler version 2.34 (aarch64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34] ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] - ignore line: [Linking CXX executable cmTC_ee2a0] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ee2a0.dir/link.txt --verbose=1] - ignore line: [/usr/bin/aarch64-linux-gnu-g++ -v -rdynamic CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_ee2a0 ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] + ignore line: [Linking CXX executable cmTC_06888] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06888.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_06888 ] ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/aarch64-linux-gnu-g++] + ignore line: [COLLECT_GCC=/usr/bin/c++] ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper] ignore line: [Target: aarch64-linux-gnu] ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --enable-fix-cortex-a53-843419 --disable-werror --enable-checking=release --build=aarch64-linux-gnu --host=aarch64-linux-gnu --target=aarch64-linux-gnu] @@ -387,13 +386,13 @@ Parsed CXX implicit link information from above output: ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/aarch64-linux-gnu/9/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib/:/lib/aarch64-linux-gnu/:/lib/../lib/:/usr/lib/aarch64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/aarch64-linux-gnu/9/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_ee2a0' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] - link line: [ /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/cclUIvRk.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_ee2a0 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_06888' '-shared-libgcc' '-mlittle-endian' '-mabi=lp64'] + link line: [ /usr/lib/gcc/aarch64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccXY6Gfj.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu --as-needed -dynamic-linker /lib/ld-linux-aarch64.so.1 -X -EL -maarch64linux --fix-cortex-a53-843419 -pie -z now -z relro -o cmTC_06888 /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/aarch64-linux-gnu/9 -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/9/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/9/../../.. CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/aarch64-linux-gnu/9/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crtn.o] arg [/usr/lib/gcc/aarch64-linux-gnu/9/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/aarch64-linux-gnu/9/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cclUIvRk.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccXY6Gfj.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -403,7 +402,6 @@ Parsed CXX implicit link information from above output: arg [--eh-frame-hdr] ==> ignore arg [--hash-style=gnu] ==> ignore arg [--as-needed] ==> ignore - arg [-export-dynamic] ==> ignore arg [-dynamic-linker] ==> ignore arg [/lib/ld-linux-aarch64.so.1] ==> ignore arg [-X] ==> ignore @@ -414,7 +412,7 @@ Parsed CXX implicit link information from above output: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_ee2a0] ==> ignore + arg [cmTC_06888] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/Scrt1.o] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/../../../aarch64-linux-gnu/crti.o] ==> ignore arg [/usr/lib/gcc/aarch64-linux-gnu/9/crtbeginS.o] ==> ignore @@ -426,7 +424,7 @@ Parsed CXX implicit link information from above output: arg [-L/usr/lib/aarch64-linux-gnu] ==> dir [/usr/lib/aarch64-linux-gnu] arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] arg [-L/usr/lib/gcc/aarch64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/aarch64-linux-gnu/9/../../..] - arg [CMakeFiles/cmTC_ee2a0.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_06888.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [-lgcc_s] ==> lib [gcc_s] diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake index 9d9430a..a3063bd 100644 --- a/build/CMakeFiles/Makefile.cmake +++ b/build/CMakeFiles/Makefile.cmake @@ -45,5 +45,5 @@ set(CMAKE_MAKEFILE_PRODUCTS # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/BasicTutorial1.dir/DependInfo.cmake" + "CMakeFiles/BasicTutorial.dir/DependInfo.cmake" ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 index 5a9ea35..b1a3694 100644 --- a/build/CMakeFiles/Makefile2 +++ b/build/CMakeFiles/Makefile2 @@ -53,7 +53,7 @@ CMAKE_BINARY_DIR = /home/autolabor/gstreamer/gst-learn/helloWorld/build # Directory level rules for the build root directory # The main recursive "all" target. -all: CMakeFiles/BasicTutorial1.dir/all +all: CMakeFiles/BasicTutorial.dir/all .PHONY : all @@ -63,36 +63,36 @@ preinstall: .PHONY : preinstall # The main recursive "clean" target. -clean: CMakeFiles/BasicTutorial1.dir/clean +clean: CMakeFiles/BasicTutorial.dir/clean .PHONY : clean #============================================================================= -# Target rules for target CMakeFiles/BasicTutorial1.dir +# Target rules for target CMakeFiles/BasicTutorial.dir # All Build rule for target. -CMakeFiles/BasicTutorial1.dir/all: - $(MAKE) -f CMakeFiles/BasicTutorial1.dir/build.make CMakeFiles/BasicTutorial1.dir/depend - $(MAKE) -f CMakeFiles/BasicTutorial1.dir/build.make CMakeFiles/BasicTutorial1.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles --progress-num=1,2 "Built target BasicTutorial1" -.PHONY : CMakeFiles/BasicTutorial1.dir/all +CMakeFiles/BasicTutorial.dir/all: + $(MAKE) -f CMakeFiles/BasicTutorial.dir/build.make CMakeFiles/BasicTutorial.dir/depend + $(MAKE) -f CMakeFiles/BasicTutorial.dir/build.make CMakeFiles/BasicTutorial.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles --progress-num=1,2 "Built target BasicTutorial" +.PHONY : CMakeFiles/BasicTutorial.dir/all # Build rule for subdir invocation for target. -CMakeFiles/BasicTutorial1.dir/rule: cmake_check_build_system +CMakeFiles/BasicTutorial.dir/rule: cmake_check_build_system $(CMAKE_COMMAND) -E cmake_progress_start /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles 2 - $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/BasicTutorial1.dir/all + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/BasicTutorial.dir/all $(CMAKE_COMMAND) -E cmake_progress_start /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles 0 -.PHONY : CMakeFiles/BasicTutorial1.dir/rule +.PHONY : CMakeFiles/BasicTutorial.dir/rule # Convenience name for target. -BasicTutorial1: CMakeFiles/BasicTutorial1.dir/rule +BasicTutorial: CMakeFiles/BasicTutorial.dir/rule -.PHONY : BasicTutorial1 +.PHONY : BasicTutorial # clean rule for target. -CMakeFiles/BasicTutorial1.dir/clean: - $(MAKE) -f CMakeFiles/BasicTutorial1.dir/build.make CMakeFiles/BasicTutorial1.dir/clean -.PHONY : CMakeFiles/BasicTutorial1.dir/clean +CMakeFiles/BasicTutorial.dir/clean: + $(MAKE) -f CMakeFiles/BasicTutorial.dir/build.make CMakeFiles/BasicTutorial.dir/clean +.PHONY : CMakeFiles/BasicTutorial.dir/clean #============================================================================= # Special targets to cleanup operation of make. diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt index 407e3b3..4b76bb7 100644 --- a/build/CMakeFiles/TargetDirectories.txt +++ b/build/CMakeFiles/TargetDirectories.txt @@ -1,3 +1,3 @@ /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/rebuild_cache.dir /home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/edit_cache.dir -/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/BasicTutorial1.dir +/home/autolabor/gstreamer/gst-learn/helloWorld/build/CMakeFiles/BasicTutorial.dir diff --git a/build/Makefile b/build/Makefile index abb3079..6f9e241 100644 --- a/build/Makefile +++ b/build/Makefile @@ -111,44 +111,44 @@ depend: .PHONY : depend #============================================================================= -# Target rules for targets named BasicTutorial1 +# Target rules for targets named BasicTutorial # Build rule for target. -BasicTutorial1: cmake_check_build_system - $(MAKE) -f CMakeFiles/Makefile2 BasicTutorial1 -.PHONY : BasicTutorial1 +BasicTutorial: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 BasicTutorial +.PHONY : BasicTutorial # fast build rule for target. -BasicTutorial1/fast: - $(MAKE) -f CMakeFiles/BasicTutorial1.dir/build.make CMakeFiles/BasicTutorial1.dir/build -.PHONY : BasicTutorial1/fast +BasicTutorial/fast: + $(MAKE) -f CMakeFiles/BasicTutorial.dir/build.make CMakeFiles/BasicTutorial.dir/build +.PHONY : BasicTutorial/fast -basic-tutorial-1.o: basic-tutorial-1.c.o +basic-tutorial-2.o: basic-tutorial-2.c.o -.PHONY : basic-tutorial-1.o +.PHONY : basic-tutorial-2.o # target to build an object file -basic-tutorial-1.c.o: - $(MAKE) -f CMakeFiles/BasicTutorial1.dir/build.make CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o -.PHONY : basic-tutorial-1.c.o +basic-tutorial-2.c.o: + $(MAKE) -f CMakeFiles/BasicTutorial.dir/build.make CMakeFiles/BasicTutorial.dir/basic-tutorial-2.c.o +.PHONY : basic-tutorial-2.c.o -basic-tutorial-1.i: basic-tutorial-1.c.i +basic-tutorial-2.i: basic-tutorial-2.c.i -.PHONY : basic-tutorial-1.i +.PHONY : basic-tutorial-2.i # target to preprocess a source file -basic-tutorial-1.c.i: - $(MAKE) -f CMakeFiles/BasicTutorial1.dir/build.make CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.i -.PHONY : basic-tutorial-1.c.i +basic-tutorial-2.c.i: + $(MAKE) -f CMakeFiles/BasicTutorial.dir/build.make CMakeFiles/BasicTutorial.dir/basic-tutorial-2.c.i +.PHONY : basic-tutorial-2.c.i -basic-tutorial-1.s: basic-tutorial-1.c.s +basic-tutorial-2.s: basic-tutorial-2.c.s -.PHONY : basic-tutorial-1.s +.PHONY : basic-tutorial-2.s # target to generate assembly for a file -basic-tutorial-1.c.s: - $(MAKE) -f CMakeFiles/BasicTutorial1.dir/build.make CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.s -.PHONY : basic-tutorial-1.c.s +basic-tutorial-2.c.s: + $(MAKE) -f CMakeFiles/BasicTutorial.dir/build.make CMakeFiles/BasicTutorial.dir/basic-tutorial-2.c.s +.PHONY : basic-tutorial-2.c.s # Help Target help: @@ -158,10 +158,10 @@ help: @echo "... depend" @echo "... rebuild_cache" @echo "... edit_cache" - @echo "... BasicTutorial1" - @echo "... basic-tutorial-1.o" - @echo "... basic-tutorial-1.i" - @echo "... basic-tutorial-1.s" + @echo "... BasicTutorial" + @echo "... basic-tutorial-2.o" + @echo "... basic-tutorial-2.i" + @echo "... basic-tutorial-2.s" .PHONY : help diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake index 3cb5b07..b9d3c88 100644 --- a/build/cmake_install.cmake +++ b/build/cmake_install.cmake @@ -12,7 +12,7 @@ if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") + set(CMAKE_INSTALL_CONFIG_NAME "") endif() message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") endif() diff --git a/build/compile_commands.json b/build/compile_commands.json deleted file mode 100644 index 15ef886..0000000 --- a/build/compile_commands.json +++ /dev/null @@ -1,7 +0,0 @@ -[ -{ - "directory": "/home/autolabor/gstreamer/gst-learn/helloWorld/build", - "command": "/usr/bin/aarch64-linux-gnu-gcc -I/usr/include/gstreamer-1.0 -I/usr/include/glib-2.0 -I/usr/lib/aarch64-linux-gnu/glib-2.0/include -g -o CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o -c /home/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c", - "file": "/home/autolabor/gstreamer/gst-learn/helloWorld/basic-tutorial-1.c" -} -] \ No newline at end of file