From 146b42e826c370202babf45de0a07e23ddf8d712 Mon Sep 17 00:00:00 2001 From: 12345qiupeng Date: Thu, 19 Jan 2023 16:04:51 +0000 Subject: [PATCH] feat: basic-tutorial-2 --- .gitignore | 1 + .vscode/c_cpp_properties.json | 20 + .vscode/settings.json | 5 + .vscode/tasks.json | 15 +- CMakeLists.txt | 5 +- basic-tutorial-2.c | 80 + .../api/v1/query/client-vscode/query.json | 1 - .../reply/cache-v2-cb2759dadc9ef85d02d0.json | 1203 ------------- .../cmakeFiles-v1-d67761b2e5052bad380b.json | 146 -- .../codemodel-v2-5e75d92da5826a660dce.json | 59 - .../reply/index-2023-01-19T05-16-27-0094.json | 116 -- ...cTutorial1-Debug-adf069a4e5c732347290.json | 137 -- build/BasicTutorial1 | Bin 26304 -> 0 bytes build/CMakeCache.txt | 35 +- build/CMakeFiles/3.16.3/CMakeCCompiler.cmake | 2 +- .../CMakeFiles/3.16.3/CMakeCXXCompiler.cmake | 2 +- .../3.16.3/CMakeDetermineCompilerABI_C.bin | Bin 9280 -> 9280 bytes .../3.16.3/CMakeDetermineCompilerABI_CXX.bin | Bin 9296 -> 9296 bytes .../BasicTutorial1.dir/C.includecache | 1516 ----------------- .../BasicTutorial1.dir/DependInfo.cmake | 23 - .../BasicTutorial1.dir/basic-tutorial-1.c.o | Bin 25376 -> 0 bytes .../CMakeFiles/BasicTutorial1.dir/build.make | 98 -- .../BasicTutorial1.dir/cmake_clean.cmake | 10 - .../BasicTutorial1.dir/depend.internal | 181 -- .../CMakeFiles/BasicTutorial1.dir/depend.make | 181 -- .../CMakeFiles/BasicTutorial1.dir/flags.make | 10 - build/CMakeFiles/BasicTutorial1.dir/link.txt | 1 - .../BasicTutorial1.dir/progress.make | 3 - build/CMakeFiles/CMakeOutput.log | 174 +- build/CMakeFiles/Makefile.cmake | 2 +- build/CMakeFiles/Makefile2 | 32 +- build/CMakeFiles/TargetDirectories.txt | 2 +- build/Makefile | 52 +- build/cmake_install.cmake | 2 +- build/compile_commands.json | 7 - 35 files changed, 268 insertions(+), 3853 deletions(-) create mode 100644 .gitignore create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json create mode 100644 basic-tutorial-2.c delete mode 100644 build/.cmake/api/v1/query/client-vscode/query.json delete mode 100644 build/.cmake/api/v1/reply/cache-v2-cb2759dadc9ef85d02d0.json delete mode 100644 build/.cmake/api/v1/reply/cmakeFiles-v1-d67761b2e5052bad380b.json delete mode 100644 build/.cmake/api/v1/reply/codemodel-v2-5e75d92da5826a660dce.json delete mode 100644 build/.cmake/api/v1/reply/index-2023-01-19T05-16-27-0094.json delete mode 100644 build/.cmake/api/v1/reply/target-BasicTutorial1-Debug-adf069a4e5c732347290.json delete mode 100755 build/BasicTutorial1 delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/C.includecache delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/DependInfo.cmake delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/basic-tutorial-1.c.o delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/build.make delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/depend.internal delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/depend.make delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/flags.make delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/link.txt delete mode 100644 build/CMakeFiles/BasicTutorial1.dir/progress.make delete mode 100644 build/compile_commands.json 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 cc2f25ebe10bc424dbec99a829186274b20b8531..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26304 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⁢>V8hmYCt}~$qlBzMAdJo{{zvVMcyyh^xR~l3^(f^Hy8{e~nw7kl52Q}9dCx)v_L!dF4L48VD>3!U~`)u$Jp~CeF zZe~s@tK93I%;F{WpGV&N2junN!&yo$tot?)<>T6?geYfKFv)oWtwg2!Q8iFqWEGl=wYcVPE&N1_h55o-IJRpW|e!5nurPo&#$8Ef=tc*18~%u zC#c<3S|thbn`c4cuGVVmk*;9+hhY}?r>cI2UUC^f1_f_;8JPlzjpz-RQ3Aka?BdsD z97A1IS`7)pb&0x+gAQl~TB^!r`~_F{VbW}lW>Ns;4z-ooI0xlGMqTAH0swe9HAvOp zqma}t!9=2kKe~)Cu(c!959N9dS*-S}XouUBz|GXh6%zOYkyT1yiVRdGfgiwq%Aa#A z{07(K3CMIARnWHfEIQF_*SO^QMNXQVsy1i=G{|=o%%=J7Lv0S<-vQzDftDG*e$-<6 z9))CuMBU?{ISje~fb!xuz*e!rzYRE-u@8LCW@H!Cdj6!%y$?AvfJwvi zA6f;CKg>b6cwQ8c(_9V-o<9r7Fy~=Vc+Lu_)NH4+mjq;*ABU%TUKUUl#u2RHc}3H= zqXs8cQ~MiSJd@gzN0GXWFA@HGxD?+7p_NPK9YpQLKY%$Zmx??+xT{hN6#)96h916Zn8>n4cwzeRP`8yk9& zuXr!=_f&5(5-_JHM3OFXA0pFw-ihMsOWp4RV0h+3&FanWj{-0~AAy~#FXJV(o@-(5 z>Mb1bdn!?0eYu;~g)2NCL`$lh-QNVT#$zFTRkv_plcx%nsov`T8A_TxD@b&k`!xU^ zo)PF=-Cj;SeVzx2tfRaJ)$Q`Uh;~$Wmahh|$J0k8Zz|skVAOLGW~=Th-w$Bi(+@wX z9xNy4Kj`@cX|SW5;=qJw7f{tZdC3tEy)IRKW%;e(IqK;}?^o~UWG6h|LzhUVJym6AEi2n)n@NcadMvnb?I0Lp4&yG2{MnkXr#81p`+8J$FV2T^`P zD<^>JJPQuK+OdG(s~;U$l2cI(Eo*De&ixQdJlkRPnwLFP8{_j}&8wcbfxz(G0NR?r zcql+&Hu*KteSK8~bhQlm+V?uENVI+gW6$fa`v&rhZbshFym5!2qqXJ_p_4b^@FoE; z^Drp9`y5_cOYSmD;PKv!!%J($QFA-4-mJrWBM1+gr5GpP{SGg!)(@Mn0p~p+pb2v> zQ63b~jpivhxA%~Mj+mc^(Y@C=ykYR&>Zg|xy@wrMcNK<#N$&!BuXA`a;5cD=Fp#_x z4zCI5F7qn1$9uiQ>jZRwa8Zlkl!``lg1kWJk)dZKUGa0!aR=<)%_ld6SaH^Gyk(5 zy0!3oeu47&pYsrlSRKv(yob7Qjpr1u^S|gJt8MaJ2*u}r$wLF9+4ETpx%nqK(BYxB z&;JTvpY_2#$x-wX*vc2EAZq<6oX@w}Jc_*gyQtDvtJSZBG0OiLz=ZGnnlS{3JDTqi z%_AI*7FNC=YE{>uXcsrH?=h{k7rO3Y?k(^U-+Zk;i9+vX09-~LvMw%2|0Il4w{+1l zV4M@URQw|l&2^6$RWP(?0!FX9(o78?$HujZWtafEL`^(2TJ)evF=CwcGC15 zKnv;~UqJk|p6{R?bwBa90PuTg^D-U2)M;UQ2{VUYMHZ#EqGPssr zmn$s(E<`M7D5nM%524zHo60Fd6;m)-v`XNA3)k>3;(7fRSh{{u{Z}Eudj$F7E75`V z^@8wK%CDM#ir4fRT#NsLSYF@AF~#@7ZVgh*GRhzEI?x;COObDG=s^4fWPT5oHFRnf z)ItczK#zuZS6;xo?IjXfk4hTe!!gDGg#2QueHdn6ax=d-E}lS>m;7Gje+4aq`n1ZcE1|O42y*QT zt&;q@sOQX*&U7K2AIC>Ao2Ug;4{s>Pr;`q>W{!o3@(nknWO#@ zRL-3BYhiq5)RVt5v%ZLs{`w^_4QsBiL*v*)LmfsQ7+J$4Dgi5N*i7XJGz}L*JlN4? zlwv|?u!x8GS;ISc-!!v^&%@>r!y0Zvui>XPSfmI9HGG)MVa|rfxnyQE97mh*GaG&) ziu?`V=e1+B9RPj;zk_vQH2Hd-I|T9@c|)W zNX$DyTKsFMb-~jdqyGvfTJ5cU82wg3hc_lx?=xNpz=P@PbT#h|e%H5pe{~gt{VpE< zRv(n1NxvU;te(GUE{eRLK_2^RV0UpLd@5gs58_=NE&0MBAHxAByhyN~DnU~l|6k8n;tBQ*Z2hxWb<&tteY{*nW9_kTTDYkx_& zVMiUwseJ(5*BEs)&{C=PQ7F?GcQjBNitj`}1cWV%Y3C*Ig6M~%>piBa^tsbb8z!Sv2S^{%mkHEzepxePfPymZ*>E>wC=uS*+_AWu5e%c+M!T$b| z4zgua2~jwX9bWQ}9IT-t$FXs=kM86bUqWIGF6K34>Gyz0AZGDACB~={Vy+fq48IW5 zw{#Kl7nh$vXFHCKE~9meqojnEEvRJKSUSoarRDeW(t~XIMvQ9hu%@XkVSlcw6-0`n zdPU2$3T>&ovP5_L+!dO~W#W;8V+kuM*#Zmy}#ua&bu~q&t@}N{S=_EIp?j zv~U+nsL0T?&PolLx%D7zLQ(O0n~2N3oAHdM z>d$Kx`g<#(2sLEBQ`=HP4Hx{Rf)869?mF<*@eD@6f=bQaiiM;SnQ9T&zUW;0{Icp? z`|7y}jL8O`!4O>>&@T6?9w9N*XU(-A*vjp=q{wD!2Oa_~wcDN$%Yeu=mJrJWFo#fK zxi=>akq@GXkn2K(?0F0ro!y43Q~Qg%jA{4*jX$j^n@%;w65)7u*#3$&&Mnak*Q{wY zITmROWi!b*o$5LF5;o-;cr^S(pV&&4n-q@QEK;4C>;woX3#FY z-5tj8sg~rn35nctA;;@=H zc?JTQ5wNgu4h+YWVX}=Vq~m4<1ZaISbtp#>g72UQlc^jA#)?S83n6G_Hk`?(WY?k2 zaA-U|5(yEGnj^>vnFEHhBO{S>GRN?`enFYEx2z&GHXc7GKNEr{@U9WX`?3+6%9&(1 zCkx(^i5#R(6qJ$uI5Uug5bJaKSYjlZ1NMjFSy>$`(%4*w3itYJ4y{PPtVnBeI`ntF zZF7;{SLA9g(%)P(_wpjwmaB{A1d589@El8sc#R15yB;Pg8iL6?QATIMq7!<0cN$QGu>if<ul zhtg>V-$)3ECJ)TTQSSEGI8slEV$y3R= zg<~Vbu|zb@+6VcF+lDcKidvJ2VaCsR(7{N4DAH>0V>WRB9oU$mQ#EN6qK@$1#_?1#gR`p1R3pZFGC^FTAPnCbRmEfi?jal2 zvqW|bM}PK?hlb$^cAxIq%`h+QM|7ftr_@nN_y@PO7_QRXOvQ6SZ}35iD*RBXSH`Du)|9!VxW5m z_%Q8D#rE^_yEvsAJ4lAdydgzOhlpUpi3_14sSx)rDbYeDYu9b^XA{JSY4Ds!srYD# zfJ?oaiHu2zw^;Q5V1G+%FwX*AEf~A4yZLNLV=aUch=~(6jqS$)Vc}XBNMan>Esr=d zs0IiP{d6WMW($VX%~3zUC{_KCBkj7atEJuA)-s6L6t%*mvG}lcAe0G@D#KFG4M&Eu zQ48}47rPaU=*)f^SYZ_eU`G+MqE;v!j>RnQUkvB1>F6@|V`vfHD{}4DU`KzjrOoQ= z@9afj+--Gqws%0ELUd1We>dqx+-5hVXrwG+B5c<=KhEa12gDrjt_GqJurmNo7d!?XmCMFUQ z`(&(<6E})@UvLi==l&0b5Yt7|RD{WkT(XI+h*VK5-;`TtLUimhk;YUvhFM~q77RS9 zwPnY~4s}aa5C`}~Hi&rH78^mlwJl46{r$cDdF>t;4ED(-2`vIB66A4ow+w72|D^DZ zCSbL0;gDw97Grp5vCRmWyx~|Rb8yE18;^}g@YN3Cd&0T|PAxKK9)SaHw?3b3}p z0#+;zTG2XMXz*E>d{4$zeBB_*Pl^hgU~wq=LyQD&=X7Kr#)p`<1Qist&kVW60|FW% z-AE`K&sZ@mN%QQ&XC+u}Ab-}Ejcdh_#Hi`)#r$vab-P6icdiVUUKFfo!Il@UgYDhH zo*RVB;Y0L$t6bWVrPBZ7(UwK%XB0=&io>pL zN6SvkExkR1SX;98PJDv`cW&`RI}*tQH1kERSaSNbF%-*;h0=TFK()C$$lK z_Q9$nj!wbKivXIUF?EO$DZ;gy`0Yyd_4l^-V=XPZl`rK&i9>83kNtK+?$m9x))J19 zO>oyh75jzb4kxqp@ekq=K1tIPCSfa^8QEl|_r}Ka1_2KaSW!gAcFM1YkWbRR6Ym|- zV5_}967HtOx^MtK%FopxRj@DLc!nA^IEuCFh@$!kE1mhMK_n@?_$#WxV%9b`- z@AK&upDE#?J~kYW$VuF83o+!!lX0wbuy&($0w#1d|4^K!+W74SHHzPTi3ZV>LCc0g zjQv(V^jUfo9~%*i30wE}2QiCcIB-Qp_igLk)g2^9<#U8xpO(J9F5DUMv17-#?da!7 zx#VxdDgetEValOYGBg}U+_u%w9qew~(cNbcjv+o@Q^X7>-3EJGdE3v$nEZ&d z4Qq>B#Iftu6AZTHM#6AX#i{|ifBiq zv|Np5dArEgYNaB+7{lpsj~z+vpLuPWTO+86Uc@Mjik+QpK?>6R1}$wxlL%;H$YM=C zEY{Z91Y#WmF~I$BF1m-KDPpHu?8-TgS0d-Za4MNU58_tcHVK|rL}bgz2HCKX}ECpwfUv zhmuL`n&fMdZMALvtB|*4Q|UijF`#`Mjp$5${`? z))9HIrV`#r3a;HCgHNs}No(cv7F6N$B%C_8OTjk=z&wg?w{&1!?}zk2-B)-z67#DB!Cha3~gm z#q70+{Ucrnp+%&XOFF*DeEK4Gaz^?&Or0Car+2ZNu<=^>)A8t3ox`w~={VJ)&U@tJi*x5f^6|5M zx2=?^^Aq{>Wx4MZ=HuN=ovX>mm$Pv^-zfa)c;c(Rw`VWYSp_?RN0o&?9bZ;c-`ld6 z>8z5e^EvtWDttc>JER3a9j9#6c^Z4sOy8-aa-G#M(?63Odde~Vr!#e`D8Ec+>NHUy zUY$BB#Mk8`B&4$i)9|F7ll^I`upr10)BUr9ulW7&TxUhJ@r@RlrevS{?CD)^e@CeFY$c^ z^uliQm^#m+bb3S5tMh9LUxg0SY<{J@OURk-&x<+zbo`ruCq30UIVE4nnLb{2ayirS zg1&-%vS8c^{B-}%LeA{{QkFYgr1Uu=^;AzB{IWpEFJ}h}`b+79C%AdP5B(SQs&iI~ zNy!;6kTaVc(L z+a$j59fnsVUVZOYRY3FWO!Y=)!M_7|zhbtf%|!2*9#7r}e1nZnWj{5GobLf&!Oq1) z)vi;s(EkVU<_z|n0)D1;RiM92TO3gOECPNe`ip?CaLk)FAGJt)Vf^Wl@@xIvk(7A0 zlgmfk5bsCvZ*Nf{om3!w3h7gvKF6NR9Fg>e^J8=tImc&_^BmNhsopzhq5mwGKiv*= zz-T7B^>X`{O?xHh+`9wOaCnCI2QF?31myqIUoIF3r!s2;Nw#E|EjjqVk_1692%?8Z z)`3W9uQihR-^xpnyi^9y=0`^Gp24}VzFHYY|<^j!el_cqe~ zaUh9pE^AwVOLx%1a|HT|t%b*cR3D~f&{86u@oT>HqyQV}qV@E4O(wq%YbcEe zvGRk#yj!TJ3)+J(2j@CtIGwbx{ew+6*cW>RyoczO7K`jdJpeoj6=fuH`geo{g;0tp zIGdf69;cxuW>TU=J^tWi60lH~io`?2AampK3=43j1AG%VK;r{t zNv>@mf~Sgne2fl*S3!b9_$T8WDi6V-u~--?Bq3MGfC*UuW0SrQ2^`Mi9>BEJQT!)m zMx`fYgYlXZz0!p{b@5Yoj5{S>@vHlOm8$PUNH%V3m8bMA_@i$xD1Nm+pwb3Otn^oO zD&326`j&%&)jons{gR*br=}?VC7NA>4B1ritNjL*o{@yAe#Niaf1~8zD(TesDpabL zE5uLV#3-x8Tptul6}qdYXuAKk;HYtx?49I1)R* zTF0vNR%IATuk@E7qwmDq`PIION>x3IzR-W~lKiR~wZEd$M-`(?3+un9fM4CGsC2M^ zzp#FKN160j^{f3Fl`f$|+pn7I6G{%vm-6qgh*6oBkM0U3Q=#sB~S 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 181aa08da9e1fd7a15af36b0050be3579b1591d5..fc6c2aeb0a672bfd0eaef0fecfc99b356e1d56fd 100755 GIT binary patch delta 1948 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 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 a2b2f0e55fa0469543a67e317522153309b73a29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25376 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 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