diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2dea06c..661d0a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,8 @@ jobs: libgtk-3-dev \ libavahi-client-dev \ libqrencode-dev \ - libpng-dev + libpng-dev \ + libx11-dev - name: Build (${{ matrix.build-type }}) run: | @@ -77,7 +78,8 @@ jobs: libgtk-3-dev \ libavahi-client-dev \ libqrencode-dev \ - libpng-dev + libpng-dev \ + libx11-dev - name: Build tests run: make test-build @@ -112,6 +114,7 @@ jobs: libavahi-client-dev \ libqrencode-dev \ libpng-dev \ + libx11-dev \ xvfb - name: Build @@ -179,6 +182,7 @@ jobs: libavahi-client-dev \ libqrencode-dev \ libpng-dev \ + libx11-dev \ valgrind - name: Build with debug symbols @@ -282,7 +286,8 @@ jobs: libgtk-3-dev \ libavahi-client-dev \ libqrencode-dev \ - libpng-dev + libpng-dev \ + libx11-dev - name: Configure CMake run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Release diff --git a/.gitignore b/.gitignore index c55c13e..306aa6f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,5 @@ build/ *.pdb rootstream tools/rstr-player +_codeql_build_dir/ +_codeql_detected_source_root diff --git a/CMakeLists.txt b/CMakeLists.txt index 103af6e..f0de0ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,6 +78,7 @@ if(UNIX AND NOT APPLE) pkg_check_modules(AVAHI avahi-client) pkg_check_modules(QRENCODE libqrencode) pkg_check_modules(PNG libpng) + pkg_check_modules(X11 x11) if(VAAPI_FOUND) add_compile_definitions(HAVE_VAAPI) @@ -86,6 +87,10 @@ if(UNIX AND NOT APPLE) if(AVAHI_FOUND) add_compile_definitions(HAVE_AVAHI) endif() + + if(X11_FOUND) + add_compile_definitions(HAVE_X11) + endif() endif() if(WIN32) @@ -128,6 +133,8 @@ set(COMMON_SOURCES set(LINUX_SOURCES src/drm_capture.c + src/x11_capture.c + src/dummy_capture.c src/vaapi_encoder.c src/nvenc_encoder.c src/vaapi_decoder.c @@ -218,6 +225,11 @@ if(UNIX AND NOT APPLE) target_include_directories(rootstream PRIVATE ${AVAHI_INCLUDE_DIRS}) endif() + if(X11_FOUND) + target_link_libraries(rootstream PRIVATE ${X11_LIBRARIES}) + target_include_directories(rootstream PRIVATE ${X11_INCLUDE_DIRS}) + endif() + if(QRENCODE_FOUND) target_link_libraries(rootstream PRIVATE ${QRENCODE_LIBRARIES}) target_include_directories(rootstream PRIVATE ${QRENCODE_INCLUDE_DIRS}) diff --git a/Makefile b/Makefile index f2de6cd..d5474bf 100644 --- a/Makefile +++ b/Makefile @@ -89,6 +89,16 @@ else $(warning ALSA not found - audio will not work. Install libasound2-dev or alsa-lib-devel) endif +# X11 (optional, for X11 capture fallback) +X11_FOUND := $(shell pkg-config --exists x11 && echo yes) +ifeq ($(X11_FOUND),yes) + CFLAGS += $(shell pkg-config --cflags x11) + LIBS += $(shell pkg-config --libs x11) + CFLAGS += -DHAVE_X11 +else + $(info X11 not found - X11 capture backend will be disabled) +endif + # NVENC (optional, for NVIDIA GPU encoding) # Check both CUDA and NVENC SDK headers CUDA_FOUND := $(shell pkg-config --exists cuda && echo yes) @@ -131,7 +141,10 @@ PLAYER := tools/rstr-player # Source files SRCS := src/main.c \ + src/core.c \ src/drm_capture.c \ + src/x11_capture.c \ + src/dummy_capture.c \ src/vaapi_encoder.c \ src/vaapi_decoder.c \ src/nvenc_encoder.c \ @@ -149,7 +162,8 @@ SRCS := src/main.c \ src/config.c \ src/latency.c \ src/recording.c \ - src/platform/platform_linux.c + src/platform/platform_linux.c \ + src/packet_validate.c ifdef HEADLESS SRCS := $(filter-out src/tray.c,$(SRCS)) @@ -215,7 +229,7 @@ $(TARGET): $(OBJS) # Build rstr-player tool # Note: Needs many modules for dependencies - simplified player would be better long-term -$(PLAYER): tools/rstr-player.c src/recording.c src/vaapi_decoder.c src/display_sdl2.c src/network.c src/crypto.c src/config.c src/input.c src/opus_codec.c src/audio_playback.c src/latency.c src/platform/platform_linux.c +$(PLAYER): tools/rstr-player.c src/recording.c src/vaapi_decoder.c src/display_sdl2.c src/network.c src/crypto.c src/config.c src/input.c src/opus_codec.c src/audio_playback.c src/latency.c src/platform/platform_linux.c src/packet_validate.c @echo "šŸ”— Building rstr-player..." @$(CC) $(CFLAGS) $^ -o $(PLAYER) $(LDFLAGS) $(LIBS) @echo "āœ“ Build complete: $(PLAYER)" diff --git a/_codeql_build_dir/CMakeCache.txt b/_codeql_build_dir/CMakeCache.txt new file mode 100644 index 0000000..909ce49 --- /dev/null +++ b/_codeql_build_dir/CMakeCache.txt @@ -0,0 +1,898 @@ +# This is the CMakeCache file. +# For build in directory: /home/runner/work/RootStream/RootStream/_codeql_build_dir +# It was generated by CMake: /usr/local/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Build client functionality +BUILD_CLIENT:BOOL=ON + +//No help, variable specified on the command line. +BUILD_DOCS:UNINITIALIZED=OFF + +//No help, variable specified on the command line. +BUILD_DOCUMENTATION:UNINITIALIZED=OFF + +//Build host functionality (Linux only) +BUILD_HOST:BOOL=ON + +//No help, variable specified on the command line. +CATKIN_ENABLE_TESTING:UNINITIALIZED=OFF + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Release + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS:UNINITIALIZED= + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=rootstream + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=1.0.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=ON + +//Build without GUI (no system tray) +HEADLESS:BOOL=OFF + +//The directory containing a CMake configuration file for Opus. +Opus_DIR:PATH=Opus_DIR-NOTFOUND + +//Arguments to supply to pkg-config +PKG_CONFIG_ARGN:STRING= + +//pkg-config executable +PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config + +//The directory containing a CMake configuration file for SDL2. +SDL2_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/SDL2 + +//Use FFmpeg for decoding instead of native APIs +USE_FFMPEG:BOOL=OFF + +//Path to a library. +pkgcfg_lib_ALSA_asound:FILEPATH=/usr/lib/x86_64-linux-gnu/libasound.so + +//Path to a library. +pkgcfg_lib_AVAHI_avahi-client:FILEPATH=/usr/lib/x86_64-linux-gnu/libavahi-client.so + +//Path to a library. +pkgcfg_lib_AVAHI_avahi-common:FILEPATH=/usr/lib/x86_64-linux-gnu/libavahi-common.so + +//Path to a library. +pkgcfg_lib_DRM_drm:FILEPATH=/usr/lib/x86_64-linux-gnu/libdrm.so + +//Path to a library. +pkgcfg_lib_GTK3_atk-1.0:FILEPATH=/usr/lib/x86_64-linux-gnu/libatk-1.0.so + +//Path to a library. +pkgcfg_lib_GTK3_cairo:FILEPATH=/usr/lib/x86_64-linux-gnu/libcairo.so + +//Path to a library. +pkgcfg_lib_GTK3_cairo-gobject:FILEPATH=/usr/lib/x86_64-linux-gnu/libcairo-gobject.so + +//Path to a library. +pkgcfg_lib_GTK3_gdk-3:FILEPATH=/usr/lib/x86_64-linux-gnu/libgdk-3.so + +//Path to a library. +pkgcfg_lib_GTK3_gdk_pixbuf-2.0:FILEPATH=/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so + +//Path to a library. +pkgcfg_lib_GTK3_gio-2.0:FILEPATH=/usr/lib/x86_64-linux-gnu/libgio-2.0.so + +//Path to a library. +pkgcfg_lib_GTK3_glib-2.0:FILEPATH=/usr/lib/x86_64-linux-gnu/libglib-2.0.so + +//Path to a library. +pkgcfg_lib_GTK3_gobject-2.0:FILEPATH=/usr/lib/x86_64-linux-gnu/libgobject-2.0.so + +//Path to a library. +pkgcfg_lib_GTK3_gtk-3:FILEPATH=/usr/lib/x86_64-linux-gnu/libgtk-3.so + +//Path to a library. +pkgcfg_lib_GTK3_harfbuzz:FILEPATH=/usr/lib/x86_64-linux-gnu/libharfbuzz.so + +//Path to a library. +pkgcfg_lib_GTK3_pango-1.0:FILEPATH=/usr/lib/x86_64-linux-gnu/libpango-1.0.so + +//Path to a library. +pkgcfg_lib_GTK3_pangocairo-1.0:FILEPATH=/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so + +//Path to a library. +pkgcfg_lib_GTK3_z:FILEPATH=/usr/lib/x86_64-linux-gnu/libz.so + +//Path to a library. +pkgcfg_lib_OPUS_opus:FILEPATH=/usr/lib/x86_64-linux-gnu/libopus.so + +//Path to a library. +pkgcfg_lib_PNG_png16:FILEPATH=/usr/lib/x86_64-linux-gnu/libpng16.so + +//Path to a library. +pkgcfg_lib_QRENCODE_qrencode:FILEPATH=/usr/lib/x86_64-linux-gnu/libqrencode.so + +//Path to a library. +pkgcfg_lib_SODIUM_sodium:FILEPATH=/usr/lib/x86_64-linux-gnu/libsodium.so + +//Path to a library. +pkgcfg_lib_VAAPI_va:FILEPATH=/usr/lib/x86_64-linux-gnu/libva.so + +//Path to a library. +pkgcfg_lib_VAAPI_va-drm:FILEPATH=/usr/lib/x86_64-linux-gnu/libva-drm.so + +//Path to a library. +pkgcfg_lib_X11_X11:FILEPATH=/usr/lib/x86_64-linux-gnu/libX11.so + +//Value Computed by CMake +rootstream_BINARY_DIR:STATIC=/home/runner/work/RootStream/RootStream/_codeql_build_dir + +//Value Computed by CMake +rootstream_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +rootstream_SOURCE_DIR:STATIC=/home/runner/work/RootStream/RootStream + +//The directory containing a CMake configuration file for unofficial-sodium. +unofficial-sodium_DIR:PATH=unofficial-sodium_DIR-NOTFOUND + + +######################## +# INTERNAL cache entries +######################## + +ALSA_CFLAGS:INTERNAL=-I/usr/include +ALSA_CFLAGS_I:INTERNAL= +ALSA_CFLAGS_OTHER:INTERNAL= +ALSA_FOUND:INTERNAL=1 +ALSA_INCLUDEDIR:INTERNAL=/usr/include +ALSA_INCLUDE_DIRS:INTERNAL=/usr/include +ALSA_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lasound +ALSA_LDFLAGS_OTHER:INTERNAL= +ALSA_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +ALSA_LIBRARIES:INTERNAL=asound +ALSA_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +ALSA_LIBS:INTERNAL= +ALSA_LIBS_L:INTERNAL= +ALSA_LIBS_OTHER:INTERNAL= +ALSA_LIBS_PATHS:INTERNAL= +ALSA_MODULE_NAME:INTERNAL=alsa +ALSA_PREFIX:INTERNAL=/usr +ALSA_STATIC_CFLAGS:INTERNAL=-I/usr/include +ALSA_STATIC_CFLAGS_I:INTERNAL= +ALSA_STATIC_CFLAGS_OTHER:INTERNAL= +ALSA_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include +ALSA_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lasound;-lm;-lpthread;-lrt +ALSA_STATIC_LDFLAGS_OTHER:INTERNAL= +ALSA_STATIC_LIBDIR:INTERNAL= +ALSA_STATIC_LIBRARIES:INTERNAL=asound;m;pthread;rt +ALSA_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +ALSA_STATIC_LIBS:INTERNAL= +ALSA_STATIC_LIBS_L:INTERNAL= +ALSA_STATIC_LIBS_OTHER:INTERNAL= +ALSA_STATIC_LIBS_PATHS:INTERNAL= +ALSA_VERSION:INTERNAL=1.2.11 +ALSA_alsa_INCLUDEDIR:INTERNAL= +ALSA_alsa_LIBDIR:INTERNAL= +ALSA_alsa_PREFIX:INTERNAL= +ALSA_alsa_VERSION:INTERNAL= +AVAHI_CFLAGS:INTERNAL=-D_REENTRANT;-I/usr/include +AVAHI_CFLAGS_I:INTERNAL= +AVAHI_CFLAGS_OTHER:INTERNAL=-D_REENTRANT +AVAHI_FOUND:INTERNAL=1 +AVAHI_INCLUDEDIR:INTERNAL=/usr/include +AVAHI_INCLUDE_DIRS:INTERNAL=/usr/include +AVAHI_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lavahi-common;-lavahi-client +AVAHI_LDFLAGS_OTHER:INTERNAL= +AVAHI_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +AVAHI_LIBRARIES:INTERNAL=avahi-common;avahi-client +AVAHI_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +AVAHI_LIBS:INTERNAL= +AVAHI_LIBS_L:INTERNAL= +AVAHI_LIBS_OTHER:INTERNAL= +AVAHI_LIBS_PATHS:INTERNAL= +AVAHI_MODULE_NAME:INTERNAL=avahi-client +AVAHI_PREFIX:INTERNAL=/usr +AVAHI_STATIC_CFLAGS:INTERNAL=-D_REENTRANT;-I/usr/include +AVAHI_STATIC_CFLAGS_I:INTERNAL= +AVAHI_STATIC_CFLAGS_OTHER:INTERNAL=-D_REENTRANT +AVAHI_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include +AVAHI_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lavahi-common;-lavahi-client +AVAHI_STATIC_LDFLAGS_OTHER:INTERNAL= +AVAHI_STATIC_LIBDIR:INTERNAL= +AVAHI_STATIC_LIBRARIES:INTERNAL=avahi-common;avahi-client +AVAHI_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +AVAHI_STATIC_LIBS:INTERNAL= +AVAHI_STATIC_LIBS_L:INTERNAL= +AVAHI_STATIC_LIBS_OTHER:INTERNAL= +AVAHI_STATIC_LIBS_PATHS:INTERNAL= +AVAHI_VERSION:INTERNAL=0.8 +AVAHI_avahi-client_INCLUDEDIR:INTERNAL= +AVAHI_avahi-client_LIBDIR:INTERNAL= +AVAHI_avahi-client_PREFIX:INTERNAL= +AVAHI_avahi-client_VERSION:INTERNAL= +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/runner/work/RootStream/RootStream/_codeql_build_dir +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=31 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=6 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/local/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/bin/ctest +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/runner/work/RootStream/RootStream +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/local/share/cmake-3.31 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +DRM_CFLAGS:INTERNAL=-I/usr/include;-I/usr/include/libdrm +DRM_CFLAGS_I:INTERNAL= +DRM_CFLAGS_OTHER:INTERNAL= +DRM_FOUND:INTERNAL=1 +DRM_INCLUDEDIR:INTERNAL=/usr/include +DRM_INCLUDE_DIRS:INTERNAL=/usr/include;/usr/include/libdrm +DRM_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-ldrm +DRM_LDFLAGS_OTHER:INTERNAL= +DRM_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +DRM_LIBRARIES:INTERNAL=drm +DRM_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +DRM_LIBS:INTERNAL= +DRM_LIBS_L:INTERNAL= +DRM_LIBS_OTHER:INTERNAL= +DRM_LIBS_PATHS:INTERNAL= +DRM_MODULE_NAME:INTERNAL=libdrm +DRM_PREFIX:INTERNAL=/usr +DRM_STATIC_CFLAGS:INTERNAL=-I/usr/include;-I/usr/include/libdrm +DRM_STATIC_CFLAGS_I:INTERNAL= +DRM_STATIC_CFLAGS_OTHER:INTERNAL= +DRM_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include;/usr/include/libdrm +DRM_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-ldrm +DRM_STATIC_LDFLAGS_OTHER:INTERNAL= +DRM_STATIC_LIBDIR:INTERNAL= +DRM_STATIC_LIBRARIES:INTERNAL=drm +DRM_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +DRM_STATIC_LIBS:INTERNAL= +DRM_STATIC_LIBS_L:INTERNAL= +DRM_STATIC_LIBS_OTHER:INTERNAL= +DRM_STATIC_LIBS_PATHS:INTERNAL= +DRM_VERSION:INTERNAL=2.4.125 +DRM_libdrm_INCLUDEDIR:INTERNAL= +DRM_libdrm_LIBDIR:INTERNAL= +DRM_libdrm_PREFIX:INTERNAL= +DRM_libdrm_VERSION:INTERNAL= +//Details about finding PkgConfig +FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v1.8.1()] +GTK3_CFLAGS:INTERNAL=-I/usr/include/gtk-3.0;-I/usr/include/pango-1.0;-I/usr/include;-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include;-I/usr/include/harfbuzz;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/libmount;-I/usr/include/blkid;-I/usr/include/fribidi;-I/usr/include/cairo;-I/usr/include/pixman-1;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/x86_64-linux-gnu;-I/usr/include/webp;-I/usr/include/gio-unix-2.0;-I/usr/include/atk-1.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/at-spi-2.0;-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include;-pthread +GTK3_CFLAGS_I:INTERNAL= +GTK3_CFLAGS_OTHER:INTERNAL=-pthread +GTK3_FOUND:INTERNAL=1 +GTK3_INCLUDEDIR:INTERNAL=/usr/include +GTK3_INCLUDE_DIRS:INTERNAL=/usr/include/gtk-3.0;/usr/include/pango-1.0;/usr/include;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include;/usr/include/harfbuzz;/usr/include/freetype2;/usr/include/libpng16;/usr/include/libmount;/usr/include/blkid;/usr/include/fribidi;/usr/include/cairo;/usr/include/pixman-1;/usr/include/gdk-pixbuf-2.0;/usr/include/x86_64-linux-gnu;/usr/include/webp;/usr/include/gio-unix-2.0;/usr/include/atk-1.0;/usr/include/at-spi2-atk/2.0;/usr/include/at-spi-2.0;/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include +GTK3_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lgtk-3;-lgdk-3;-lz;-lpangocairo-1.0;-lpango-1.0;-lharfbuzz;-latk-1.0;-lcairo-gobject;-lcairo;-lgdk_pixbuf-2.0;-lgio-2.0;-lgobject-2.0;-lglib-2.0 +GTK3_LDFLAGS_OTHER:INTERNAL= +GTK3_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +GTK3_LIBRARIES:INTERNAL=gtk-3;gdk-3;z;pangocairo-1.0;pango-1.0;harfbuzz;atk-1.0;cairo-gobject;cairo;gdk_pixbuf-2.0;gio-2.0;gobject-2.0;glib-2.0 +GTK3_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +GTK3_LIBS:INTERNAL= +GTK3_LIBS_L:INTERNAL= +GTK3_LIBS_OTHER:INTERNAL= +GTK3_LIBS_PATHS:INTERNAL= +GTK3_MODULE_NAME:INTERNAL=gtk+-3.0 +GTK3_PREFIX:INTERNAL=/usr +GTK3_STATIC_CFLAGS:INTERNAL=-I/usr/include/gtk-3.0;-I/usr/include/pango-1.0;-I/usr/include;-I/usr/include/glib-2.0;-I/usr/lib/x86_64-linux-gnu/glib-2.0/include;-I/usr/include/harfbuzz;-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/libmount;-I/usr/include/blkid;-I/usr/include/fribidi;-I/usr/include/cairo;-I/usr/include/pixman-1;-I/usr/include/gdk-pixbuf-2.0;-I/usr/include/x86_64-linux-gnu;-I/usr/include/webp;-I/usr/include/gio-unix-2.0;-I/usr/include/atk-1.0;-I/usr/include/at-spi2-atk/2.0;-I/usr/include/at-spi-2.0;-I/usr/include/dbus-1.0;-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include;-pthread;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DLZMA_API_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DLZMA_API_STATIC;-DFRIBIDI_LIB_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC +GTK3_STATIC_CFLAGS_I:INTERNAL= +GTK3_STATIC_CFLAGS_OTHER:INTERNAL=-pthread;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DLZMA_API_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DLZMA_API_STATIC;-DFRIBIDI_LIB_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DXML_STATIC;-DFRIBIDI_LIB_STATIC;-DXML_STATIC;-DXML_STATIC +GTK3_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/gtk-3.0;/usr/include/pango-1.0;/usr/include;/usr/include/glib-2.0;/usr/lib/x86_64-linux-gnu/glib-2.0/include;/usr/include/harfbuzz;/usr/include/freetype2;/usr/include/libpng16;/usr/include/libmount;/usr/include/blkid;/usr/include/fribidi;/usr/include/cairo;/usr/include/pixman-1;/usr/include/gdk-pixbuf-2.0;/usr/include/x86_64-linux-gnu;/usr/include/webp;/usr/include/gio-unix-2.0;/usr/include/atk-1.0;/usr/include/at-spi2-atk/2.0;/usr/include/at-spi-2.0;/usr/include/dbus-1.0;/usr/lib/x86_64-linux-gnu/dbus-1.0/include +GTK3_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lgtk-3;-lgdk-3;-lz;-lm;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-ldatrie;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lpangocairo-1.0;-lm;-lpango-1.0;-lm;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lgobject-2.0;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-ldatrie;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lm;-L/usr/lib/x86_64-linux-gnu;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-ldatrie;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-ldatrie;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-ldatrie;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lpng16;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-ljpeg;-lwebp;-lLerc;-ljbig;-lm;-L/usr/lib/x86_64-linux-gnu;-lwebp;-lm;-L/usr/lib/x86_64-linux-gnu;-lsharpyuv;-lm;-lzstd;-pthread;-llzma;-pthread;-lpthread;-ldeflate;-lm;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lgmodule-2.0;-pthread;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lm;-ldl;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lgobject-2.0;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXrandr;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXcursor;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXcomposite;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXdamage;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXinerama;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lwayland-client;-lm;-pthread;-lrt;-lffi;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-lrt;-lffi;-lm;-pthread;-lrt;-lffi;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-ldl;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-latk-1.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lcairo-gobject;-lm;-ldl;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lpng16;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lgdk_pixbuf-2.0;-lm;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-ljpeg;-ltiff;-lwebp;-lLerc;-ljbig;-lm;-L/usr/lib/x86_64-linux-gnu;-lwebp;-lm;-L/usr/lib/x86_64-linux-gnu;-lsharpyuv;-lm;-lzstd;-pthread;-llzma;-pthread;-lpthread;-ljpeg;-ldeflate;-lm;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lgmodule-2.0;-pthread;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lgobject-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-latk-bridge-2.0;-L/usr/lib/x86_64-linux-gnu;-latspi;-L/usr/lib/x86_64-linux-gnu;-lsystemd;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXtst;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXi;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXfixes;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-latk-1.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-ldbus-1;-lsystemd;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-Wl,--export-dynamic;-lgmodule-2.0;-pthread;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lwayland-client;-lm;-pthread;-lrt;-lffi;-lxkbcommon;-lwayland-cursor;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-lrt;-lffi;-lwayland-egl;-lwayland-client;-lm;-pthread;-lrt;-lffi;-lepoxy;-ldl;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lGL;-lEGL;-lpangoft2-1.0;-lm;-lpango-1.0;-lm;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-L/usr/lib/x86_64-linux-gnu;-ldatrie;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8;-lfribidi;-lthai;-L/usr/lib/x86_64-linux-gnu;-ldatrie;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXft;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lcairo;-lm;-ldl;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lfontconfig;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXext;-L/usr/lib/x86_64-linux-gnu;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXrender;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb-render;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lxcb-shm;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXdmcp;-lpixman-1;-lharfbuzz-gobject;-lharfbuzz;-pthread;-lm;-L/usr/lib/x86_64-linux-gnu;-lfreetype;-lbz2;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lpng16;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lbrotlidec;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lgraphite2;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-lgio-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lgobject-2.0;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lpcre2-8;-lffi;-L/usr/lib/x86_64-linux-gnu;-lgmodule-2.0;-pthread;-L/usr/lib/x86_64-linux-gnu;-lglib-2.0;-lm;-pthread;-L/usr/lib/x86_64-linux-gnu;-lz;-lmount;-ldl;-L/usr/lib/x86_64-linux-gnu;-lblkid;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lselinux;-L/usr/lib/x86_64-linux-gnu;-lsepol;-lpcre2-8 +GTK3_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-Wl,--export-dynamic;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread;-pthread +GTK3_STATIC_LIBDIR:INTERNAL= +GTK3_STATIC_LIBRARIES:INTERNAL=gtk-3;gdk-3;z;m;m;pcre2-8;ffi;m;bz2;z;m;z;m;brotlicommon;glib-2.0;m;pcre2-8;m;pcre2-8;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;m;z;dl;blkid;sepol;sepol;pcre2-8;datrie;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;freetype;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;pangocairo-1.0;m;pango-1.0;m;m;pcre2-8;ffi;m;bz2;z;m;z;m;brotlicommon;glib-2.0;m;pcre2-8;m;pcre2-8;m;pcre2-8;gobject-2.0;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;glib-2.0;m;z;dl;blkid;sepol;sepol;pcre2-8;datrie;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;freetype;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;m;m;pcre2-8;ffi;m;bz2;z;m;z;m;brotlicommon;glib-2.0;m;pcre2-8;m;pcre2-8;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;glib-2.0;m;z;dl;blkid;sepol;sepol;pcre2-8;datrie;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;freetype;bz2;z;m;z;m;brotlicommon;expat;m;m;pcre2-8;m;pcre2-8;ffi;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;m;z;dl;blkid;sepol;sepol;pcre2-8;datrie;m;bz2;z;m;z;m;z;brotlicommon;m;pcre2-8;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;freetype;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;freetype;bz2;z;m;z;m;brotlicommon;m;pcre2-8;m;pcre2-8;m;pcre2-8;ffi;m;pcre2-8;m;pcre2-8;ffi;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;m;z;dl;blkid;sepol;sepol;pcre2-8;datrie;m;bz2;z;m;z;m;z;brotlicommon;m;pcre2-8;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;expat;m;freetype;bz2;z;m;z;m;z;brotlicommon;m;bz2;z;png16;m;z;m;z;brotlicommon;m;pcre2-8;m;pcre2-8;m;pcre2-8;ffi;m;m;pcre2-8;ffi;m;z;m;z;jpeg;webp;Lerc;jbig;m;webp;m;sharpyuv;m;zstd;lzma;pthread;deflate;m;pcre2-8;gmodule-2.0;glib-2.0;m;pcre2-8;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;m;z;dl;blkid;sepol;sepol;pcre2-8;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;dl;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pcre2-8;gobject-2.0;glib-2.0;m;pcre2-8;ffi;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pcre2-8;ffi;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;m;z;dl;blkid;sepol;sepol;pcre2-8;bz2;z;m;z;m;z;brotlicommon;expat;m;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xrandr;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xcursor;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xcomposite;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xdamage;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xinerama;X11;pthread;xcb;Xau;pthread;xcb;Xau;wayland-client;m;rt;ffi;m;rt;ffi;m;rt;ffi;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;dl;pthread;xcb;Xau;atk-1.0;m;pcre2-8;m;pcre2-8;ffi;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;cairo-gobject;m;dl;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;m;pcre2-8;m;pcre2-8;ffi;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;freetype;bz2;z;png16;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;gdk_pixbuf-2.0;m;m;pcre2-8;ffi;m;z;m;z;jpeg;tiff;webp;Lerc;jbig;m;webp;m;sharpyuv;m;zstd;lzma;pthread;jpeg;deflate;m;pcre2-8;gmodule-2.0;glib-2.0;m;pcre2-8;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;m;dl;blkid;sepol;sepol;pcre2-8;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;glib-2.0;m;dl;blkid;sepol;sepol;pcre2-8;m;pcre2-8;gobject-2.0;m;pcre2-8;ffi;atk-bridge-2.0;atspi;systemd;glib-2.0;m;pcre2-8;m;pcre2-8;ffi;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;m;z;dl;blkid;sepol;sepol;pcre2-8;X11;pthread;xcb;Xau;Xtst;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xi;X11;pthread;xcb;Xau;X11;pthread;xcb;Xau;Xfixes;X11;pthread;xcb;Xau;atk-1.0;m;pcre2-8;m;pcre2-8;ffi;dbus-1;systemd;m;pcre2-8;ffi;m;pcre2-8;gmodule-2.0;glib-2.0;m;pcre2-8;m;pcre2-8;wayland-client;m;rt;ffi;xkbcommon;wayland-cursor;m;rt;ffi;wayland-egl;wayland-client;m;rt;ffi;epoxy;dl;pthread;xcb;Xau;GL;EGL;pangoft2-1.0;m;pango-1.0;m;m;pcre2-8;ffi;m;bz2;z;m;z;m;brotlicommon;glib-2.0;m;pcre2-8;m;pcre2-8;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;glib-2.0;m;z;dl;blkid;sepol;sepol;pcre2-8;datrie;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;m;dl;z;m;z;m;z;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;pthread;xcb;Xau;X11;pthread;xcb;Xau;pthread;Xau;xcb;Xau;xcb;Xau;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;freetype;bz2;z;m;z;m;brotlicommon;expat;m;m;pcre2-8;m;pcre2-8;ffi;m;pcre2-8;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;m;z;dl;blkid;sepol;sepol;pcre2-8;fribidi;thai;datrie;m;bz2;z;m;z;m;z;brotlicommon;m;pcre2-8;Xrender;X11;pthread;xcb;Xau;pthread;xcb;Xau;Xft;X11;pthread;xcb;Xau;pthread;xcb;Xau;bz2;z;m;z;m;z;brotlicommon;expat;m;bz2;z;m;z;m;z;brotlicommon;cairo;m;dl;z;m;z;m;z;fontconfig;bz2;z;m;z;m;z;brotlicommon;expat;m;freetype;bz2;z;m;z;m;z;brotlicommon;X11;pthread;xcb;Xau;Xext;pthread;xcb;Xau;Xrender;X11;pthread;xcb;Xau;X11;pthread;Xau;xcb;Xau;xcb-render;xcb;Xau;xcb-shm;xcb;Xau;Xdmcp;pixman-1;harfbuzz-gobject;harfbuzz;m;freetype;bz2;z;png16;m;z;m;brotlidec;brotlicommon;m;pcre2-8;graphite2;m;pcre2-8;m;pcre2-8;ffi;m;pcre2-8;ffi;gio-2.0;m;pcre2-8;gobject-2.0;glib-2.0;m;pcre2-8;ffi;gmodule-2.0;glib-2.0;m;z;mount;dl;blkid;sepol;selinux;sepol;pcre2-8 +GTK3_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu +GTK3_STATIC_LIBS:INTERNAL= +GTK3_STATIC_LIBS_L:INTERNAL= +GTK3_STATIC_LIBS_OTHER:INTERNAL= +GTK3_STATIC_LIBS_PATHS:INTERNAL= +GTK3_VERSION:INTERNAL=3.24.41 +GTK3_gtk+-3.0_INCLUDEDIR:INTERNAL= +GTK3_gtk+-3.0_LIBDIR:INTERNAL= +GTK3_gtk+-3.0_PREFIX:INTERNAL= +GTK3_gtk+-3.0_VERSION:INTERNAL= +OPUS_CFLAGS:INTERNAL=-I/usr/include/opus +OPUS_CFLAGS_I:INTERNAL= +OPUS_CFLAGS_OTHER:INTERNAL= +OPUS_FOUND:INTERNAL=1 +OPUS_INCLUDEDIR:INTERNAL=/usr/include +OPUS_INCLUDE_DIRS:INTERNAL=/usr/include/opus +OPUS_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lopus +OPUS_LDFLAGS_OTHER:INTERNAL= +OPUS_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +OPUS_LIBRARIES:INTERNAL=opus +OPUS_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +OPUS_LIBS:INTERNAL= +OPUS_LIBS_L:INTERNAL= +OPUS_LIBS_OTHER:INTERNAL= +OPUS_LIBS_PATHS:INTERNAL= +OPUS_MODULE_NAME:INTERNAL=opus +OPUS_PREFIX:INTERNAL=/usr +OPUS_STATIC_CFLAGS:INTERNAL=-I/usr/include/opus +OPUS_STATIC_CFLAGS_I:INTERNAL= +OPUS_STATIC_CFLAGS_OTHER:INTERNAL= +OPUS_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/opus +OPUS_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lopus;-lm +OPUS_STATIC_LDFLAGS_OTHER:INTERNAL= +OPUS_STATIC_LIBDIR:INTERNAL= +OPUS_STATIC_LIBRARIES:INTERNAL=opus;m +OPUS_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +OPUS_STATIC_LIBS:INTERNAL= +OPUS_STATIC_LIBS_L:INTERNAL= +OPUS_STATIC_LIBS_OTHER:INTERNAL= +OPUS_STATIC_LIBS_PATHS:INTERNAL= +OPUS_VERSION:INTERNAL=1.4 +OPUS_opus_INCLUDEDIR:INTERNAL= +OPUS_opus_LIBDIR:INTERNAL= +OPUS_opus_PREFIX:INTERNAL= +OPUS_opus_VERSION:INTERNAL= +//ADVANCED property for variable: PKG_CONFIG_ARGN +PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE +PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 +PNG_CFLAGS:INTERNAL=-I/usr/include/libpng16;-I/usr/include +PNG_CFLAGS_I:INTERNAL= +PNG_CFLAGS_OTHER:INTERNAL= +PNG_FOUND:INTERNAL=1 +PNG_INCLUDEDIR:INTERNAL=/usr/include/libpng16 +PNG_INCLUDE_DIRS:INTERNAL=/usr/include/libpng16;/usr/include +PNG_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lpng16 +PNG_LDFLAGS_OTHER:INTERNAL= +PNG_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +PNG_LIBRARIES:INTERNAL=png16 +PNG_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +PNG_LIBS:INTERNAL= +PNG_LIBS_L:INTERNAL= +PNG_LIBS_OTHER:INTERNAL= +PNG_LIBS_PATHS:INTERNAL= +PNG_MODULE_NAME:INTERNAL=libpng +PNG_PREFIX:INTERNAL=/usr +PNG_STATIC_CFLAGS:INTERNAL=-I/usr/include/libpng16;-I/usr/include +PNG_STATIC_CFLAGS_I:INTERNAL= +PNG_STATIC_CFLAGS_OTHER:INTERNAL= +PNG_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/libpng16;/usr/include +PNG_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lpng16;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz +PNG_STATIC_LDFLAGS_OTHER:INTERNAL= +PNG_STATIC_LIBDIR:INTERNAL= +PNG_STATIC_LIBRARIES:INTERNAL=png16;m;z;m;z +PNG_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu +PNG_STATIC_LIBS:INTERNAL= +PNG_STATIC_LIBS_L:INTERNAL= +PNG_STATIC_LIBS_OTHER:INTERNAL= +PNG_STATIC_LIBS_PATHS:INTERNAL= +PNG_VERSION:INTERNAL=1.6.43 +PNG_libpng_INCLUDEDIR:INTERNAL= +PNG_libpng_LIBDIR:INTERNAL= +PNG_libpng_PREFIX:INTERNAL= +PNG_libpng_VERSION:INTERNAL= +QRENCODE_CFLAGS:INTERNAL=-I/usr/include +QRENCODE_CFLAGS_I:INTERNAL= +QRENCODE_CFLAGS_OTHER:INTERNAL= +QRENCODE_FOUND:INTERNAL=1 +QRENCODE_INCLUDEDIR:INTERNAL=/usr/include +QRENCODE_INCLUDE_DIRS:INTERNAL=/usr/include +QRENCODE_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lqrencode +QRENCODE_LDFLAGS_OTHER:INTERNAL= +QRENCODE_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +QRENCODE_LIBRARIES:INTERNAL=qrencode +QRENCODE_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +QRENCODE_LIBS:INTERNAL= +QRENCODE_LIBS_L:INTERNAL= +QRENCODE_LIBS_OTHER:INTERNAL= +QRENCODE_LIBS_PATHS:INTERNAL= +QRENCODE_MODULE_NAME:INTERNAL=libqrencode +QRENCODE_PREFIX:INTERNAL=/usr +QRENCODE_STATIC_CFLAGS:INTERNAL=-I/usr/include +QRENCODE_STATIC_CFLAGS_I:INTERNAL= +QRENCODE_STATIC_CFLAGS_OTHER:INTERNAL= +QRENCODE_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include +QRENCODE_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lqrencode;-lpthread +QRENCODE_STATIC_LDFLAGS_OTHER:INTERNAL= +QRENCODE_STATIC_LIBDIR:INTERNAL= +QRENCODE_STATIC_LIBRARIES:INTERNAL=qrencode;pthread +QRENCODE_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +QRENCODE_STATIC_LIBS:INTERNAL= +QRENCODE_STATIC_LIBS_L:INTERNAL= +QRENCODE_STATIC_LIBS_OTHER:INTERNAL= +QRENCODE_STATIC_LIBS_PATHS:INTERNAL= +QRENCODE_VERSION:INTERNAL=4.1.1 +QRENCODE_libqrencode_INCLUDEDIR:INTERNAL= +QRENCODE_libqrencode_LIBDIR:INTERNAL= +QRENCODE_libqrencode_PREFIX:INTERNAL= +QRENCODE_libqrencode_VERSION:INTERNAL= +SODIUM_CFLAGS:INTERNAL=-I/usr/include +SODIUM_CFLAGS_I:INTERNAL= +SODIUM_CFLAGS_OTHER:INTERNAL= +SODIUM_FOUND:INTERNAL=1 +SODIUM_INCLUDEDIR:INTERNAL=/usr/include +SODIUM_INCLUDE_DIRS:INTERNAL=/usr/include +SODIUM_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lsodium +SODIUM_LDFLAGS_OTHER:INTERNAL= +SODIUM_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +SODIUM_LIBRARIES:INTERNAL=sodium +SODIUM_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +SODIUM_LIBS:INTERNAL= +SODIUM_LIBS_L:INTERNAL= +SODIUM_LIBS_OTHER:INTERNAL= +SODIUM_LIBS_PATHS:INTERNAL= +SODIUM_MODULE_NAME:INTERNAL=libsodium +SODIUM_PREFIX:INTERNAL=/usr +SODIUM_STATIC_CFLAGS:INTERNAL=-I/usr/include +SODIUM_STATIC_CFLAGS_I:INTERNAL= +SODIUM_STATIC_CFLAGS_OTHER:INTERNAL= +SODIUM_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include +SODIUM_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lsodium;-pthread +SODIUM_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread +SODIUM_STATIC_LIBDIR:INTERNAL= +SODIUM_STATIC_LIBRARIES:INTERNAL=sodium +SODIUM_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +SODIUM_STATIC_LIBS:INTERNAL= +SODIUM_STATIC_LIBS_L:INTERNAL= +SODIUM_STATIC_LIBS_OTHER:INTERNAL= +SODIUM_STATIC_LIBS_PATHS:INTERNAL= +SODIUM_VERSION:INTERNAL=1.0.18 +SODIUM_libsodium_INCLUDEDIR:INTERNAL= +SODIUM_libsodium_LIBDIR:INTERNAL= +SODIUM_libsodium_PREFIX:INTERNAL= +SODIUM_libsodium_VERSION:INTERNAL= +VAAPI_CFLAGS:INTERNAL=-I/usr/include +VAAPI_CFLAGS_I:INTERNAL= +VAAPI_CFLAGS_OTHER:INTERNAL= +VAAPI_FOUND:INTERNAL=1 +VAAPI_INCLUDEDIR:INTERNAL= +VAAPI_INCLUDE_DIRS:INTERNAL=/usr/include +VAAPI_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lva-drm;-lva +VAAPI_LDFLAGS_OTHER:INTERNAL= +VAAPI_LIBDIR:INTERNAL= +VAAPI_LIBRARIES:INTERNAL=va-drm;va +VAAPI_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +VAAPI_LIBS:INTERNAL= +VAAPI_LIBS_L:INTERNAL= +VAAPI_LIBS_OTHER:INTERNAL= +VAAPI_LIBS_PATHS:INTERNAL= +VAAPI_MODULE_NAME:INTERNAL= +VAAPI_PREFIX:INTERNAL= +VAAPI_STATIC_CFLAGS:INTERNAL=-I/usr/include +VAAPI_STATIC_CFLAGS_I:INTERNAL= +VAAPI_STATIC_CFLAGS_OTHER:INTERNAL= +VAAPI_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include +VAAPI_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lva-drm;-lva +VAAPI_STATIC_LDFLAGS_OTHER:INTERNAL= +VAAPI_STATIC_LIBDIR:INTERNAL= +VAAPI_STATIC_LIBRARIES:INTERNAL=va-drm;va +VAAPI_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +VAAPI_STATIC_LIBS:INTERNAL= +VAAPI_STATIC_LIBS_L:INTERNAL= +VAAPI_STATIC_LIBS_OTHER:INTERNAL= +VAAPI_STATIC_LIBS_PATHS:INTERNAL= +VAAPI_VERSION:INTERNAL= +VAAPI_libva-drm_INCLUDEDIR:INTERNAL=/usr/include +VAAPI_libva-drm_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +VAAPI_libva-drm_MODULE_NAME:INTERNAL=libva-drm +VAAPI_libva-drm_PREFIX:INTERNAL=/usr +VAAPI_libva-drm_VERSION:INTERNAL=1.20.0 +VAAPI_libva_INCLUDEDIR:INTERNAL=/usr/include +VAAPI_libva_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +VAAPI_libva_MODULE_NAME:INTERNAL=libva +VAAPI_libva_PREFIX:INTERNAL=/usr +VAAPI_libva_VERSION:INTERNAL=1.20.0 +X11_CFLAGS:INTERNAL=-I/usr/include +X11_CFLAGS_I:INTERNAL= +X11_CFLAGS_OTHER:INTERNAL= +X11_FOUND:INTERNAL=1 +X11_INCLUDEDIR:INTERNAL=/usr/include +X11_INCLUDE_DIRS:INTERNAL=/usr/include +X11_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lX11 +X11_LDFLAGS_OTHER:INTERNAL= +X11_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu +X11_LIBRARIES:INTERNAL=X11 +X11_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu +X11_LIBS:INTERNAL= +X11_LIBS_L:INTERNAL= +X11_LIBS_OTHER:INTERNAL= +X11_LIBS_PATHS:INTERNAL= +X11_MODULE_NAME:INTERNAL=x11 +X11_PREFIX:INTERNAL=/usr +X11_STATIC_CFLAGS:INTERNAL=-I/usr/include +X11_STATIC_CFLAGS_I:INTERNAL= +X11_STATIC_CFLAGS_OTHER:INTERNAL= +X11_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include +X11_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lX11;-lpthread;-L/usr/lib/x86_64-linux-gnu;-lxcb;-L/usr/lib/x86_64-linux-gnu;-lXau;-lXdmcp +X11_STATIC_LDFLAGS_OTHER:INTERNAL= +X11_STATIC_LIBDIR:INTERNAL= +X11_STATIC_LIBRARIES:INTERNAL=X11;pthread;xcb;Xau;Xdmcp +X11_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu +X11_STATIC_LIBS:INTERNAL= +X11_STATIC_LIBS_L:INTERNAL= +X11_STATIC_LIBS_OTHER:INTERNAL= +X11_STATIC_LIBS_PATHS:INTERNAL= +X11_VERSION:INTERNAL=1.8.7 +X11_x11_INCLUDEDIR:INTERNAL= +X11_x11_LIBDIR:INTERNAL= +X11_x11_PREFIX:INTERNAL= +X11_x11_VERSION:INTERNAL= +//linker supports push/pop state +_CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +__pkg_config_arguments_ALSA:INTERNAL=REQUIRED;alsa +__pkg_config_arguments_AVAHI:INTERNAL=avahi-client +__pkg_config_arguments_DRM:INTERNAL=REQUIRED;libdrm +__pkg_config_arguments_GTK3:INTERNAL=REQUIRED;gtk+-3.0 +__pkg_config_arguments_OPUS:INTERNAL=REQUIRED;opus +__pkg_config_arguments_PNG:INTERNAL=libpng +__pkg_config_arguments_QRENCODE:INTERNAL=libqrencode +__pkg_config_arguments_SODIUM:INTERNAL=REQUIRED;libsodium +__pkg_config_arguments_VAAPI:INTERNAL=libva;libva-drm +__pkg_config_arguments_X11:INTERNAL=x11 +__pkg_config_checked_ALSA:INTERNAL=1 +__pkg_config_checked_AVAHI:INTERNAL=1 +__pkg_config_checked_DRM:INTERNAL=1 +__pkg_config_checked_GTK3:INTERNAL=1 +__pkg_config_checked_OPUS:INTERNAL=1 +__pkg_config_checked_PNG:INTERNAL=1 +__pkg_config_checked_QRENCODE:INTERNAL=1 +__pkg_config_checked_SODIUM:INTERNAL=1 +__pkg_config_checked_VAAPI:INTERNAL=1 +__pkg_config_checked_X11:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_ALSA_asound +pkgcfg_lib_ALSA_asound-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_AVAHI_avahi-client +pkgcfg_lib_AVAHI_avahi-client-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_AVAHI_avahi-common +pkgcfg_lib_AVAHI_avahi-common-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_DRM_drm +pkgcfg_lib_DRM_drm-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_atk-1.0 +pkgcfg_lib_GTK3_atk-1.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_cairo +pkgcfg_lib_GTK3_cairo-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_cairo-gobject +pkgcfg_lib_GTK3_cairo-gobject-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_gdk-3 +pkgcfg_lib_GTK3_gdk-3-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_gdk_pixbuf-2.0 +pkgcfg_lib_GTK3_gdk_pixbuf-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_gio-2.0 +pkgcfg_lib_GTK3_gio-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_glib-2.0 +pkgcfg_lib_GTK3_glib-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_gobject-2.0 +pkgcfg_lib_GTK3_gobject-2.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_gtk-3 +pkgcfg_lib_GTK3_gtk-3-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_harfbuzz +pkgcfg_lib_GTK3_harfbuzz-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_pango-1.0 +pkgcfg_lib_GTK3_pango-1.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_pangocairo-1.0 +pkgcfg_lib_GTK3_pangocairo-1.0-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_GTK3_z +pkgcfg_lib_GTK3_z-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_OPUS_opus +pkgcfg_lib_OPUS_opus-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_PNG_png16 +pkgcfg_lib_PNG_png16-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_QRENCODE_qrencode +pkgcfg_lib_QRENCODE_qrencode-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_SODIUM_sodium +pkgcfg_lib_SODIUM_sodium-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_VAAPI_va +pkgcfg_lib_VAAPI_va-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_VAAPI_va-drm +pkgcfg_lib_VAAPI_va-drm-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: pkgcfg_lib_X11_X11 +pkgcfg_lib_X11_X11-ADVANCED:INTERNAL=1 +prefix_result:INTERNAL=/usr/lib/x86_64-linux-gnu + diff --git a/_codeql_build_dir/CMakeFiles/3.31.6/CMakeCCompiler.cmake b/_codeql_build_dir/CMakeFiles/3.31.6/CMakeCCompiler.cmake new file mode 100644 index 0000000..2e2d847 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/3.31.6/CMakeCCompiler.cmake @@ -0,0 +1,81 @@ +set(CMAKE_C_COMPILER "/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "13.3.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-13") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld") +set(CMAKE_C_COMPILER_LINKER_ID "GNU") +set(CMAKE_C_COMPILER_LINKER_VERSION 2.42) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/_codeql_build_dir/CMakeFiles/3.31.6/CMakeDetermineCompilerABI_C.bin b/_codeql_build_dir/CMakeFiles/3.31.6/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..0e5f034 Binary files /dev/null and b/_codeql_build_dir/CMakeFiles/3.31.6/CMakeDetermineCompilerABI_C.bin differ diff --git a/_codeql_build_dir/CMakeFiles/3.31.6/CMakeSystem.cmake b/_codeql_build_dir/CMakeFiles/3.31.6/CMakeSystem.cmake new file mode 100644 index 0000000..bf8b352 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/3.31.6/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.14.0-1017-azure") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.14.0-1017-azure") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.14.0-1017-azure") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.14.0-1017-azure") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/_codeql_build_dir/CMakeFiles/3.31.6/CompilerIdC/CMakeCCompilerId.c b/_codeql_build_dir/CMakeFiles/3.31.6/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..50d95e5 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/3.31.6/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/_codeql_build_dir/CMakeFiles/3.31.6/CompilerIdC/a.out b/_codeql_build_dir/CMakeFiles/3.31.6/CompilerIdC/a.out new file mode 100755 index 0000000..ecc315e Binary files /dev/null and b/_codeql_build_dir/CMakeFiles/3.31.6/CompilerIdC/a.out differ diff --git a/_codeql_build_dir/CMakeFiles/CMakeConfigureLog.yaml b/_codeql_build_dir/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..b491714 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,283 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:5 (project)" + message: | + The system is: Linux - 6.14.0-1017-azure - x86_64 + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:5 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is GNU, found in: + /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/3.31.6/CompilerIdC/a.out + + - + kind: "try_compile-v1" + backtrace: + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "/usr/local/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/CMakeScratch/TryCompile-dy7vCR" + binary: "/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/CMakeScratch/TryCompile-dy7vCR" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/CMakeScratch/TryCompile-dy7vCR' + + Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_84214/fast + /usr/bin/gmake -f CMakeFiles/cmTC_84214.dir/build.make CMakeFiles/cmTC_84214.dir/build + gmake[1]: Entering directory '/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/CMakeScratch/TryCompile-dy7vCR' + Building C object CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -v -o CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.31/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_84214.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.31/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_84214.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccVtqDR2.s + GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu) + compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/13/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + Compiler executable checksum: 38987c28e967c64056a6454abdef726e + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_84214.dir/' + as -v --64 -o CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o /tmp/ccVtqDR2.s + GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_84214 + /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_84214.dir/link.txt --verbose=1 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_84214' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_84214.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8rsaxv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_84214 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + collect2 version 13.3.0 + /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8rsaxv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_84214 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + GNU ld (GNU Binutils for Ubuntu) 2.42 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_84214' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_84214.' + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -v -Wl,-v CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o -o cmTC_84214 + gmake[1]: Leaving directory '/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/CMakeScratch/TryCompile-dy7vCR' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "/usr/local/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "/usr/local/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/CMakeScratch/TryCompile-dy7vCR'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_84214/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_84214.dir/build.make CMakeFiles/cmTC_84214.dir/build] + ignore line: [gmake[1]: Entering directory '/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/CMakeScratch/TryCompile-dy7vCR'] + ignore line: [Building C object CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o] + ignore line: [/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -v -o CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.31/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_84214.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.31/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_84214.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccVtqDR2.s] + ignore line: [GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 38987c28e967c64056a6454abdef726e] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_84214.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o /tmp/ccVtqDR2.s] + ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_84214] + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_84214.dir/link.txt --verbose=1] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_84214' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_84214.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8rsaxv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_84214 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc8rsaxv.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_84214] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + ignore line: [collect2 version 13.3.0] + ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8rsaxv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_84214 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_84214.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + linker tool for 'C': /usr/bin/ld + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake-3.31/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "/usr/local/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Running the C compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils for Ubuntu) 2.42 +... diff --git a/_codeql_build_dir/CMakeFiles/CMakeDirectoryInformation.cmake b/_codeql_build_dir/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..c916ff3 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/runner/work/RootStream/RootStream") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/runner/work/RootStream/RootStream/_codeql_build_dir") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/_codeql_build_dir/CMakeFiles/Makefile.cmake b/_codeql_build_dir/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..d1eed1b --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/Makefile.cmake @@ -0,0 +1,126 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/runner/work/RootStream/RootStream/CMakeLists.txt" + "CMakeFiles/3.31.6/CMakeCCompiler.cmake" + "CMakeFiles/3.31.6/CMakeSystem.cmake" + "/usr/lib/x86_64-linux-gnu/cmake/SDL2/sdl2-config-version.cmake" + "/usr/lib/x86_64-linux-gnu/cmake/SDL2/sdl2-config.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeCCompiler.cmake.in" + "/usr/local/share/cmake-3.31/Modules/CMakeCCompilerABI.c" + "/usr/local/share/cmake-3.31/Modules/CMakeCInformation.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeCompilerIdDetection.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeDetermineCompilerSupport.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeFindBinUtils.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeGenericSystem.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeInitializeConfigs.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeLanguageInformation.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeSystem.cmake.in" + "/usr/local/share/cmake-3.31/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeTestCompilerCommon.cmake" + "/usr/local/share/cmake-3.31/Modules/CMakeUnixFindMake.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/GNU-C.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/GNU.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/TIClang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.31/Modules/FeatureSummary.cmake" + "/usr/local/share/cmake-3.31/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/local/share/cmake-3.31/Modules/FindPackageMessage.cmake" + "/usr/local/share/cmake-3.31/Modules/FindPkgConfig.cmake" + "/usr/local/share/cmake-3.31/Modules/Internal/CMakeCLinkerInformation.cmake" + "/usr/local/share/cmake-3.31/Modules/Internal/CMakeCommonLinkerInformation.cmake" + "/usr/local/share/cmake-3.31/Modules/Internal/CMakeDetermineLinkerId.cmake" + "/usr/local/share/cmake-3.31/Modules/Internal/FeatureTesting.cmake" + "/usr/local/share/cmake-3.31/Modules/Linker/GNU-C.cmake" + "/usr/local/share/cmake-3.31/Modules/Linker/GNU.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/Linker/GNU.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/Linker/Linux-GNU-C.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/Linker/Linux-GNU.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/Linux-GNU-C.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/Linux-GNU.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/Linux-Initialize.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/Linux.cmake" + "/usr/local/share/cmake-3.31/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.31.6/CMakeSystem.cmake" + "CMakeFiles/3.31.6/CMakeCCompiler.cmake" + "CMakeFiles/3.31.6/CMakeCCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/rootstream.dir/DependInfo.cmake" + "CMakeFiles/rstr-player.dir/DependInfo.cmake" + "CMakeFiles/test_crypto.dir/DependInfo.cmake" + "CMakeFiles/test_encoding.dir/DependInfo.cmake" + "CMakeFiles/test_packet.dir/DependInfo.cmake" + ) diff --git a/_codeql_build_dir/CMakeFiles/Makefile2 b/_codeql_build_dir/CMakeFiles/Makefile2 new file mode 100644 index 0000000..28f6e10 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/Makefile2 @@ -0,0 +1,265 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Produce verbose output by default. +VERBOSE = 1 + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/runner/work/RootStream/RootStream + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/runner/work/RootStream/RootStream/_codeql_build_dir + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/rootstream.dir/all +all: CMakeFiles/rstr-player.dir/all +all: CMakeFiles/test_crypto.dir/all +all: CMakeFiles/test_encoding.dir/all +all: CMakeFiles/test_packet.dir/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: CMakeFiles/rootstream.dir/codegen +codegen: CMakeFiles/rstr-player.dir/codegen +codegen: CMakeFiles/test_crypto.dir/codegen +codegen: CMakeFiles/test_encoding.dir/codegen +codegen: CMakeFiles/test_packet.dir/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/rootstream.dir/clean +clean: CMakeFiles/rstr-player.dir/clean +clean: CMakeFiles/test_crypto.dir/clean +clean: CMakeFiles/test_encoding.dir/clean +clean: CMakeFiles/test_packet.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/rootstream.dir + +# All Build rule for target. +CMakeFiles/rootstream.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 "Built target rootstream" +.PHONY : CMakeFiles/rootstream.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/rootstream.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 25 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/rootstream.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 0 +.PHONY : CMakeFiles/rootstream.dir/rule + +# Convenience name for target. +rootstream: CMakeFiles/rootstream.dir/rule +.PHONY : rootstream + +# codegen rule for target. +CMakeFiles/rootstream.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 "Finished codegen for target rootstream" +.PHONY : CMakeFiles/rootstream.dir/codegen + +# clean rule for target. +CMakeFiles/rootstream.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/clean +.PHONY : CMakeFiles/rootstream.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/rstr-player.dir + +# All Build rule for target. +CMakeFiles/rstr-player.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=26,27,28,29,30,31,32,33,34,35,36,37,38,39 "Built target rstr-player" +.PHONY : CMakeFiles/rstr-player.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/rstr-player.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 14 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/rstr-player.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 0 +.PHONY : CMakeFiles/rstr-player.dir/rule + +# Convenience name for target. +rstr-player: CMakeFiles/rstr-player.dir/rule +.PHONY : rstr-player + +# codegen rule for target. +CMakeFiles/rstr-player.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=26,27,28,29,30,31,32,33,34,35,36,37,38,39 "Finished codegen for target rstr-player" +.PHONY : CMakeFiles/rstr-player.dir/codegen + +# clean rule for target. +CMakeFiles/rstr-player.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/clean +.PHONY : CMakeFiles/rstr-player.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/test_crypto.dir + +# All Build rule for target. +CMakeFiles/test_crypto.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=40,41,42,43 "Built target test_crypto" +.PHONY : CMakeFiles/test_crypto.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/test_crypto.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/test_crypto.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 0 +.PHONY : CMakeFiles/test_crypto.dir/rule + +# Convenience name for target. +test_crypto: CMakeFiles/test_crypto.dir/rule +.PHONY : test_crypto + +# codegen rule for target. +CMakeFiles/test_crypto.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=40,41,42,43 "Finished codegen for target test_crypto" +.PHONY : CMakeFiles/test_crypto.dir/codegen + +# clean rule for target. +CMakeFiles/test_crypto.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/clean +.PHONY : CMakeFiles/test_crypto.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/test_encoding.dir + +# All Build rule for target. +CMakeFiles/test_encoding.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=44,45 "Built target test_encoding" +.PHONY : CMakeFiles/test_encoding.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/test_encoding.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/test_encoding.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 0 +.PHONY : CMakeFiles/test_encoding.dir/rule + +# Convenience name for target. +test_encoding: CMakeFiles/test_encoding.dir/rule +.PHONY : test_encoding + +# codegen rule for target. +CMakeFiles/test_encoding.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=44,45 "Finished codegen for target test_encoding" +.PHONY : CMakeFiles/test_encoding.dir/codegen + +# clean rule for target. +CMakeFiles/test_encoding.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/clean +.PHONY : CMakeFiles/test_encoding.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/test_packet.dir + +# All Build rule for target. +CMakeFiles/test_packet.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=46,47,48 "Built target test_packet" +.PHONY : CMakeFiles/test_packet.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/test_packet.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/test_packet.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 0 +.PHONY : CMakeFiles/test_packet.dir/rule + +# Convenience name for target. +test_packet: CMakeFiles/test_packet.dir/rule +.PHONY : test_packet + +# codegen rule for target. +CMakeFiles/test_packet.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=46,47,48 "Finished codegen for target test_packet" +.PHONY : CMakeFiles/test_packet.dir/codegen + +# clean rule for target. +CMakeFiles/test_packet.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/clean +.PHONY : CMakeFiles/test_packet.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/_codeql_build_dir/CMakeFiles/TargetDirectories.txt b/_codeql_build_dir/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..943efaa --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,12 @@ +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/rootstream.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/rstr-player.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/test_crypto.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/test_encoding.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/test_packet.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/test.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/edit_cache.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/rebuild_cache.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/list_install_components.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/install.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/install/local.dir +/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/install/strip.dir diff --git a/_codeql_build_dir/CMakeFiles/cmake.check_cache b/_codeql_build_dir/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/_codeql_build_dir/CMakeFiles/progress.marks b/_codeql_build_dir/CMakeFiles/progress.marks new file mode 100644 index 0000000..21e72e8 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/progress.marks @@ -0,0 +1 @@ +48 diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/DependInfo.cmake b/_codeql_build_dir/CMakeFiles/rootstream.dir/DependInfo.cmake new file mode 100644 index 0000000..a6afc72 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/DependInfo.cmake @@ -0,0 +1,47 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/runner/work/RootStream/RootStream/src/audio_capture.c" "CMakeFiles/rootstream.dir/src/audio_capture.c.o" "gcc" "CMakeFiles/rootstream.dir/src/audio_capture.c.o.d" + "/home/runner/work/RootStream/RootStream/src/audio_playback.c" "CMakeFiles/rootstream.dir/src/audio_playback.c.o" "gcc" "CMakeFiles/rootstream.dir/src/audio_playback.c.o.d" + "/home/runner/work/RootStream/RootStream/src/config.c" "CMakeFiles/rootstream.dir/src/config.c.o" "gcc" "CMakeFiles/rootstream.dir/src/config.c.o.d" + "/home/runner/work/RootStream/RootStream/src/core.c" "CMakeFiles/rootstream.dir/src/core.c.o" "gcc" "CMakeFiles/rootstream.dir/src/core.c.o.d" + "/home/runner/work/RootStream/RootStream/src/crypto.c" "CMakeFiles/rootstream.dir/src/crypto.c.o" "gcc" "CMakeFiles/rootstream.dir/src/crypto.c.o.d" + "/home/runner/work/RootStream/RootStream/src/discovery.c" "CMakeFiles/rootstream.dir/src/discovery.c.o" "gcc" "CMakeFiles/rootstream.dir/src/discovery.c.o.d" + "/home/runner/work/RootStream/RootStream/src/display_sdl2.c" "CMakeFiles/rootstream.dir/src/display_sdl2.c.o" "gcc" "CMakeFiles/rootstream.dir/src/display_sdl2.c.o.d" + "/home/runner/work/RootStream/RootStream/src/drm_capture.c" "CMakeFiles/rootstream.dir/src/drm_capture.c.o" "gcc" "CMakeFiles/rootstream.dir/src/drm_capture.c.o.d" + "/home/runner/work/RootStream/RootStream/src/dummy_capture.c" "CMakeFiles/rootstream.dir/src/dummy_capture.c.o" "gcc" "CMakeFiles/rootstream.dir/src/dummy_capture.c.o.d" + "/home/runner/work/RootStream/RootStream/src/input.c" "CMakeFiles/rootstream.dir/src/input.c.o" "gcc" "CMakeFiles/rootstream.dir/src/input.c.o.d" + "/home/runner/work/RootStream/RootStream/src/latency.c" "CMakeFiles/rootstream.dir/src/latency.c.o" "gcc" "CMakeFiles/rootstream.dir/src/latency.c.o.d" + "/home/runner/work/RootStream/RootStream/src/main.c" "CMakeFiles/rootstream.dir/src/main.c.o" "gcc" "CMakeFiles/rootstream.dir/src/main.c.o.d" + "/home/runner/work/RootStream/RootStream/src/network.c" "CMakeFiles/rootstream.dir/src/network.c.o" "gcc" "CMakeFiles/rootstream.dir/src/network.c.o.d" + "/home/runner/work/RootStream/RootStream/src/nvenc_encoder.c" "CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o" "gcc" "CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o.d" + "/home/runner/work/RootStream/RootStream/src/opus_codec.c" "CMakeFiles/rootstream.dir/src/opus_codec.c.o" "gcc" "CMakeFiles/rootstream.dir/src/opus_codec.c.o.d" + "/home/runner/work/RootStream/RootStream/src/packet_validate.c" "CMakeFiles/rootstream.dir/src/packet_validate.c.o" "gcc" "CMakeFiles/rootstream.dir/src/packet_validate.c.o.d" + "/home/runner/work/RootStream/RootStream/src/platform/platform_linux.c" "CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o" "gcc" "CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o.d" + "/home/runner/work/RootStream/RootStream/src/qrcode.c" "CMakeFiles/rootstream.dir/src/qrcode.c.o" "gcc" "CMakeFiles/rootstream.dir/src/qrcode.c.o.d" + "/home/runner/work/RootStream/RootStream/src/recording.c" "CMakeFiles/rootstream.dir/src/recording.c.o" "gcc" "CMakeFiles/rootstream.dir/src/recording.c.o.d" + "/home/runner/work/RootStream/RootStream/src/service.c" "CMakeFiles/rootstream.dir/src/service.c.o" "gcc" "CMakeFiles/rootstream.dir/src/service.c.o.d" + "/home/runner/work/RootStream/RootStream/src/tray.c" "CMakeFiles/rootstream.dir/src/tray.c.o" "gcc" "CMakeFiles/rootstream.dir/src/tray.c.o.d" + "/home/runner/work/RootStream/RootStream/src/vaapi_decoder.c" "CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o" "gcc" "CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o.d" + "/home/runner/work/RootStream/RootStream/src/vaapi_encoder.c" "CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o" "gcc" "CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o.d" + "/home/runner/work/RootStream/RootStream/src/x11_capture.c" "CMakeFiles/rootstream.dir/src/x11_capture.c.o" "gcc" "CMakeFiles/rootstream.dir/src/x11_capture.c.o.d" + "" "rootstream" "gcc" "CMakeFiles/rootstream.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/build.make b/_codeql_build_dir/CMakeFiles/rootstream.dir/build.make new file mode 100644 index 0000000..92f6dd6 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/build.make @@ -0,0 +1,486 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Produce verbose output by default. +VERBOSE = 1 + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/runner/work/RootStream/RootStream + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/runner/work/RootStream/RootStream/_codeql_build_dir + +# Include any dependencies generated for this target. +include CMakeFiles/rootstream.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/rootstream.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/rootstream.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/rootstream.dir/flags.make + +CMakeFiles/rootstream.dir/codegen: +.PHONY : CMakeFiles/rootstream.dir/codegen + +CMakeFiles/rootstream.dir/src/main.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/main.c.o: /home/runner/work/RootStream/RootStream/src/main.c +CMakeFiles/rootstream.dir/src/main.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/rootstream.dir/src/main.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/main.c.o -MF CMakeFiles/rootstream.dir/src/main.c.o.d -o CMakeFiles/rootstream.dir/src/main.c.o -c /home/runner/work/RootStream/RootStream/src/main.c + +CMakeFiles/rootstream.dir/src/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/main.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/main.c > CMakeFiles/rootstream.dir/src/main.c.i + +CMakeFiles/rootstream.dir/src/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/main.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/main.c -o CMakeFiles/rootstream.dir/src/main.c.s + +CMakeFiles/rootstream.dir/src/core.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/core.c.o: /home/runner/work/RootStream/RootStream/src/core.c +CMakeFiles/rootstream.dir/src/core.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/rootstream.dir/src/core.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/core.c.o -MF CMakeFiles/rootstream.dir/src/core.c.o.d -o CMakeFiles/rootstream.dir/src/core.c.o -c /home/runner/work/RootStream/RootStream/src/core.c + +CMakeFiles/rootstream.dir/src/core.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/core.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/core.c > CMakeFiles/rootstream.dir/src/core.c.i + +CMakeFiles/rootstream.dir/src/core.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/core.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/core.c -o CMakeFiles/rootstream.dir/src/core.c.s + +CMakeFiles/rootstream.dir/src/crypto.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/crypto.c.o: /home/runner/work/RootStream/RootStream/src/crypto.c +CMakeFiles/rootstream.dir/src/crypto.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/rootstream.dir/src/crypto.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/crypto.c.o -MF CMakeFiles/rootstream.dir/src/crypto.c.o.d -o CMakeFiles/rootstream.dir/src/crypto.c.o -c /home/runner/work/RootStream/RootStream/src/crypto.c + +CMakeFiles/rootstream.dir/src/crypto.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/crypto.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/crypto.c > CMakeFiles/rootstream.dir/src/crypto.c.i + +CMakeFiles/rootstream.dir/src/crypto.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/crypto.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/crypto.c -o CMakeFiles/rootstream.dir/src/crypto.c.s + +CMakeFiles/rootstream.dir/src/network.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/network.c.o: /home/runner/work/RootStream/RootStream/src/network.c +CMakeFiles/rootstream.dir/src/network.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/rootstream.dir/src/network.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/network.c.o -MF CMakeFiles/rootstream.dir/src/network.c.o.d -o CMakeFiles/rootstream.dir/src/network.c.o -c /home/runner/work/RootStream/RootStream/src/network.c + +CMakeFiles/rootstream.dir/src/network.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/network.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/network.c > CMakeFiles/rootstream.dir/src/network.c.i + +CMakeFiles/rootstream.dir/src/network.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/network.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/network.c -o CMakeFiles/rootstream.dir/src/network.c.s + +CMakeFiles/rootstream.dir/src/packet_validate.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/packet_validate.c.o: /home/runner/work/RootStream/RootStream/src/packet_validate.c +CMakeFiles/rootstream.dir/src/packet_validate.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/rootstream.dir/src/packet_validate.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/packet_validate.c.o -MF CMakeFiles/rootstream.dir/src/packet_validate.c.o.d -o CMakeFiles/rootstream.dir/src/packet_validate.c.o -c /home/runner/work/RootStream/RootStream/src/packet_validate.c + +CMakeFiles/rootstream.dir/src/packet_validate.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/packet_validate.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/packet_validate.c > CMakeFiles/rootstream.dir/src/packet_validate.c.i + +CMakeFiles/rootstream.dir/src/packet_validate.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/packet_validate.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/packet_validate.c -o CMakeFiles/rootstream.dir/src/packet_validate.c.s + +CMakeFiles/rootstream.dir/src/opus_codec.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/opus_codec.c.o: /home/runner/work/RootStream/RootStream/src/opus_codec.c +CMakeFiles/rootstream.dir/src/opus_codec.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/rootstream.dir/src/opus_codec.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/opus_codec.c.o -MF CMakeFiles/rootstream.dir/src/opus_codec.c.o.d -o CMakeFiles/rootstream.dir/src/opus_codec.c.o -c /home/runner/work/RootStream/RootStream/src/opus_codec.c + +CMakeFiles/rootstream.dir/src/opus_codec.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/opus_codec.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/opus_codec.c > CMakeFiles/rootstream.dir/src/opus_codec.c.i + +CMakeFiles/rootstream.dir/src/opus_codec.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/opus_codec.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/opus_codec.c -o CMakeFiles/rootstream.dir/src/opus_codec.c.s + +CMakeFiles/rootstream.dir/src/display_sdl2.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/display_sdl2.c.o: /home/runner/work/RootStream/RootStream/src/display_sdl2.c +CMakeFiles/rootstream.dir/src/display_sdl2.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/rootstream.dir/src/display_sdl2.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/display_sdl2.c.o -MF CMakeFiles/rootstream.dir/src/display_sdl2.c.o.d -o CMakeFiles/rootstream.dir/src/display_sdl2.c.o -c /home/runner/work/RootStream/RootStream/src/display_sdl2.c + +CMakeFiles/rootstream.dir/src/display_sdl2.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/display_sdl2.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/display_sdl2.c > CMakeFiles/rootstream.dir/src/display_sdl2.c.i + +CMakeFiles/rootstream.dir/src/display_sdl2.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/display_sdl2.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/display_sdl2.c -o CMakeFiles/rootstream.dir/src/display_sdl2.c.s + +CMakeFiles/rootstream.dir/src/config.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/config.c.o: /home/runner/work/RootStream/RootStream/src/config.c +CMakeFiles/rootstream.dir/src/config.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/rootstream.dir/src/config.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/config.c.o -MF CMakeFiles/rootstream.dir/src/config.c.o.d -o CMakeFiles/rootstream.dir/src/config.c.o -c /home/runner/work/RootStream/RootStream/src/config.c + +CMakeFiles/rootstream.dir/src/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/config.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/config.c > CMakeFiles/rootstream.dir/src/config.c.i + +CMakeFiles/rootstream.dir/src/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/config.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/config.c -o CMakeFiles/rootstream.dir/src/config.c.s + +CMakeFiles/rootstream.dir/src/latency.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/latency.c.o: /home/runner/work/RootStream/RootStream/src/latency.c +CMakeFiles/rootstream.dir/src/latency.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/rootstream.dir/src/latency.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/latency.c.o -MF CMakeFiles/rootstream.dir/src/latency.c.o.d -o CMakeFiles/rootstream.dir/src/latency.c.o -c /home/runner/work/RootStream/RootStream/src/latency.c + +CMakeFiles/rootstream.dir/src/latency.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/latency.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/latency.c > CMakeFiles/rootstream.dir/src/latency.c.i + +CMakeFiles/rootstream.dir/src/latency.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/latency.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/latency.c -o CMakeFiles/rootstream.dir/src/latency.c.s + +CMakeFiles/rootstream.dir/src/drm_capture.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/drm_capture.c.o: /home/runner/work/RootStream/RootStream/src/drm_capture.c +CMakeFiles/rootstream.dir/src/drm_capture.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/rootstream.dir/src/drm_capture.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/drm_capture.c.o -MF CMakeFiles/rootstream.dir/src/drm_capture.c.o.d -o CMakeFiles/rootstream.dir/src/drm_capture.c.o -c /home/runner/work/RootStream/RootStream/src/drm_capture.c + +CMakeFiles/rootstream.dir/src/drm_capture.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/drm_capture.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/drm_capture.c > CMakeFiles/rootstream.dir/src/drm_capture.c.i + +CMakeFiles/rootstream.dir/src/drm_capture.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/drm_capture.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/drm_capture.c -o CMakeFiles/rootstream.dir/src/drm_capture.c.s + +CMakeFiles/rootstream.dir/src/x11_capture.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/x11_capture.c.o: /home/runner/work/RootStream/RootStream/src/x11_capture.c +CMakeFiles/rootstream.dir/src/x11_capture.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/rootstream.dir/src/x11_capture.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/x11_capture.c.o -MF CMakeFiles/rootstream.dir/src/x11_capture.c.o.d -o CMakeFiles/rootstream.dir/src/x11_capture.c.o -c /home/runner/work/RootStream/RootStream/src/x11_capture.c + +CMakeFiles/rootstream.dir/src/x11_capture.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/x11_capture.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/x11_capture.c > CMakeFiles/rootstream.dir/src/x11_capture.c.i + +CMakeFiles/rootstream.dir/src/x11_capture.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/x11_capture.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/x11_capture.c -o CMakeFiles/rootstream.dir/src/x11_capture.c.s + +CMakeFiles/rootstream.dir/src/dummy_capture.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/dummy_capture.c.o: /home/runner/work/RootStream/RootStream/src/dummy_capture.c +CMakeFiles/rootstream.dir/src/dummy_capture.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/rootstream.dir/src/dummy_capture.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/dummy_capture.c.o -MF CMakeFiles/rootstream.dir/src/dummy_capture.c.o.d -o CMakeFiles/rootstream.dir/src/dummy_capture.c.o -c /home/runner/work/RootStream/RootStream/src/dummy_capture.c + +CMakeFiles/rootstream.dir/src/dummy_capture.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/dummy_capture.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/dummy_capture.c > CMakeFiles/rootstream.dir/src/dummy_capture.c.i + +CMakeFiles/rootstream.dir/src/dummy_capture.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/dummy_capture.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/dummy_capture.c -o CMakeFiles/rootstream.dir/src/dummy_capture.c.s + +CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o: /home/runner/work/RootStream/RootStream/src/vaapi_encoder.c +CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o -MF CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o.d -o CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o -c /home/runner/work/RootStream/RootStream/src/vaapi_encoder.c + +CMakeFiles/rootstream.dir/src/vaapi_encoder.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/vaapi_encoder.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/vaapi_encoder.c > CMakeFiles/rootstream.dir/src/vaapi_encoder.c.i + +CMakeFiles/rootstream.dir/src/vaapi_encoder.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/vaapi_encoder.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/vaapi_encoder.c -o CMakeFiles/rootstream.dir/src/vaapi_encoder.c.s + +CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o: /home/runner/work/RootStream/RootStream/src/nvenc_encoder.c +CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building C object CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o -MF CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o.d -o CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o -c /home/runner/work/RootStream/RootStream/src/nvenc_encoder.c + +CMakeFiles/rootstream.dir/src/nvenc_encoder.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/nvenc_encoder.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/nvenc_encoder.c > CMakeFiles/rootstream.dir/src/nvenc_encoder.c.i + +CMakeFiles/rootstream.dir/src/nvenc_encoder.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/nvenc_encoder.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/nvenc_encoder.c -o CMakeFiles/rootstream.dir/src/nvenc_encoder.c.s + +CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o: /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c +CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building C object CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o -MF CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o.d -o CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o -c /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c + +CMakeFiles/rootstream.dir/src/vaapi_decoder.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/vaapi_decoder.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c > CMakeFiles/rootstream.dir/src/vaapi_decoder.c.i + +CMakeFiles/rootstream.dir/src/vaapi_decoder.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/vaapi_decoder.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c -o CMakeFiles/rootstream.dir/src/vaapi_decoder.c.s + +CMakeFiles/rootstream.dir/src/audio_capture.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/audio_capture.c.o: /home/runner/work/RootStream/RootStream/src/audio_capture.c +CMakeFiles/rootstream.dir/src/audio_capture.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building C object CMakeFiles/rootstream.dir/src/audio_capture.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/audio_capture.c.o -MF CMakeFiles/rootstream.dir/src/audio_capture.c.o.d -o CMakeFiles/rootstream.dir/src/audio_capture.c.o -c /home/runner/work/RootStream/RootStream/src/audio_capture.c + +CMakeFiles/rootstream.dir/src/audio_capture.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/audio_capture.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/audio_capture.c > CMakeFiles/rootstream.dir/src/audio_capture.c.i + +CMakeFiles/rootstream.dir/src/audio_capture.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/audio_capture.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/audio_capture.c -o CMakeFiles/rootstream.dir/src/audio_capture.c.s + +CMakeFiles/rootstream.dir/src/audio_playback.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/audio_playback.c.o: /home/runner/work/RootStream/RootStream/src/audio_playback.c +CMakeFiles/rootstream.dir/src/audio_playback.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building C object CMakeFiles/rootstream.dir/src/audio_playback.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/audio_playback.c.o -MF CMakeFiles/rootstream.dir/src/audio_playback.c.o.d -o CMakeFiles/rootstream.dir/src/audio_playback.c.o -c /home/runner/work/RootStream/RootStream/src/audio_playback.c + +CMakeFiles/rootstream.dir/src/audio_playback.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/audio_playback.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/audio_playback.c > CMakeFiles/rootstream.dir/src/audio_playback.c.i + +CMakeFiles/rootstream.dir/src/audio_playback.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/audio_playback.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/audio_playback.c -o CMakeFiles/rootstream.dir/src/audio_playback.c.s + +CMakeFiles/rootstream.dir/src/input.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/input.c.o: /home/runner/work/RootStream/RootStream/src/input.c +CMakeFiles/rootstream.dir/src/input.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building C object CMakeFiles/rootstream.dir/src/input.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/input.c.o -MF CMakeFiles/rootstream.dir/src/input.c.o.d -o CMakeFiles/rootstream.dir/src/input.c.o -c /home/runner/work/RootStream/RootStream/src/input.c + +CMakeFiles/rootstream.dir/src/input.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/input.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/input.c > CMakeFiles/rootstream.dir/src/input.c.i + +CMakeFiles/rootstream.dir/src/input.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/input.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/input.c -o CMakeFiles/rootstream.dir/src/input.c.s + +CMakeFiles/rootstream.dir/src/discovery.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/discovery.c.o: /home/runner/work/RootStream/RootStream/src/discovery.c +CMakeFiles/rootstream.dir/src/discovery.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building C object CMakeFiles/rootstream.dir/src/discovery.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/discovery.c.o -MF CMakeFiles/rootstream.dir/src/discovery.c.o.d -o CMakeFiles/rootstream.dir/src/discovery.c.o -c /home/runner/work/RootStream/RootStream/src/discovery.c + +CMakeFiles/rootstream.dir/src/discovery.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/discovery.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/discovery.c > CMakeFiles/rootstream.dir/src/discovery.c.i + +CMakeFiles/rootstream.dir/src/discovery.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/discovery.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/discovery.c -o CMakeFiles/rootstream.dir/src/discovery.c.s + +CMakeFiles/rootstream.dir/src/service.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/service.c.o: /home/runner/work/RootStream/RootStream/src/service.c +CMakeFiles/rootstream.dir/src/service.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building C object CMakeFiles/rootstream.dir/src/service.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/service.c.o -MF CMakeFiles/rootstream.dir/src/service.c.o.d -o CMakeFiles/rootstream.dir/src/service.c.o -c /home/runner/work/RootStream/RootStream/src/service.c + +CMakeFiles/rootstream.dir/src/service.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/service.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/service.c > CMakeFiles/rootstream.dir/src/service.c.i + +CMakeFiles/rootstream.dir/src/service.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/service.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/service.c -o CMakeFiles/rootstream.dir/src/service.c.s + +CMakeFiles/rootstream.dir/src/recording.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/recording.c.o: /home/runner/work/RootStream/RootStream/src/recording.c +CMakeFiles/rootstream.dir/src/recording.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building C object CMakeFiles/rootstream.dir/src/recording.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/recording.c.o -MF CMakeFiles/rootstream.dir/src/recording.c.o.d -o CMakeFiles/rootstream.dir/src/recording.c.o -c /home/runner/work/RootStream/RootStream/src/recording.c + +CMakeFiles/rootstream.dir/src/recording.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/recording.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/recording.c > CMakeFiles/rootstream.dir/src/recording.c.i + +CMakeFiles/rootstream.dir/src/recording.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/recording.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/recording.c -o CMakeFiles/rootstream.dir/src/recording.c.s + +CMakeFiles/rootstream.dir/src/qrcode.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/qrcode.c.o: /home/runner/work/RootStream/RootStream/src/qrcode.c +CMakeFiles/rootstream.dir/src/qrcode.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building C object CMakeFiles/rootstream.dir/src/qrcode.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/qrcode.c.o -MF CMakeFiles/rootstream.dir/src/qrcode.c.o.d -o CMakeFiles/rootstream.dir/src/qrcode.c.o -c /home/runner/work/RootStream/RootStream/src/qrcode.c + +CMakeFiles/rootstream.dir/src/qrcode.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/qrcode.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/qrcode.c > CMakeFiles/rootstream.dir/src/qrcode.c.i + +CMakeFiles/rootstream.dir/src/qrcode.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/qrcode.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/qrcode.c -o CMakeFiles/rootstream.dir/src/qrcode.c.s + +CMakeFiles/rootstream.dir/src/tray.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/tray.c.o: /home/runner/work/RootStream/RootStream/src/tray.c +CMakeFiles/rootstream.dir/src/tray.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building C object CMakeFiles/rootstream.dir/src/tray.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/tray.c.o -MF CMakeFiles/rootstream.dir/src/tray.c.o.d -o CMakeFiles/rootstream.dir/src/tray.c.o -c /home/runner/work/RootStream/RootStream/src/tray.c + +CMakeFiles/rootstream.dir/src/tray.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/tray.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/tray.c > CMakeFiles/rootstream.dir/src/tray.c.i + +CMakeFiles/rootstream.dir/src/tray.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/tray.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/tray.c -o CMakeFiles/rootstream.dir/src/tray.c.s + +CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o: CMakeFiles/rootstream.dir/flags.make +CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o: /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c +CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o: CMakeFiles/rootstream.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building C object CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o -MF CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o.d -o CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o -c /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c + +CMakeFiles/rootstream.dir/src/platform/platform_linux.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rootstream.dir/src/platform/platform_linux.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c > CMakeFiles/rootstream.dir/src/platform/platform_linux.c.i + +CMakeFiles/rootstream.dir/src/platform/platform_linux.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rootstream.dir/src/platform/platform_linux.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c -o CMakeFiles/rootstream.dir/src/platform/platform_linux.c.s + +# Object files for target rootstream +rootstream_OBJECTS = \ +"CMakeFiles/rootstream.dir/src/main.c.o" \ +"CMakeFiles/rootstream.dir/src/core.c.o" \ +"CMakeFiles/rootstream.dir/src/crypto.c.o" \ +"CMakeFiles/rootstream.dir/src/network.c.o" \ +"CMakeFiles/rootstream.dir/src/packet_validate.c.o" \ +"CMakeFiles/rootstream.dir/src/opus_codec.c.o" \ +"CMakeFiles/rootstream.dir/src/display_sdl2.c.o" \ +"CMakeFiles/rootstream.dir/src/config.c.o" \ +"CMakeFiles/rootstream.dir/src/latency.c.o" \ +"CMakeFiles/rootstream.dir/src/drm_capture.c.o" \ +"CMakeFiles/rootstream.dir/src/x11_capture.c.o" \ +"CMakeFiles/rootstream.dir/src/dummy_capture.c.o" \ +"CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o" \ +"CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o" \ +"CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o" \ +"CMakeFiles/rootstream.dir/src/audio_capture.c.o" \ +"CMakeFiles/rootstream.dir/src/audio_playback.c.o" \ +"CMakeFiles/rootstream.dir/src/input.c.o" \ +"CMakeFiles/rootstream.dir/src/discovery.c.o" \ +"CMakeFiles/rootstream.dir/src/service.c.o" \ +"CMakeFiles/rootstream.dir/src/recording.c.o" \ +"CMakeFiles/rootstream.dir/src/qrcode.c.o" \ +"CMakeFiles/rootstream.dir/src/tray.c.o" \ +"CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o" + +# External object files for target rootstream +rootstream_EXTERNAL_OBJECTS = + +rootstream: CMakeFiles/rootstream.dir/src/main.c.o +rootstream: CMakeFiles/rootstream.dir/src/core.c.o +rootstream: CMakeFiles/rootstream.dir/src/crypto.c.o +rootstream: CMakeFiles/rootstream.dir/src/network.c.o +rootstream: CMakeFiles/rootstream.dir/src/packet_validate.c.o +rootstream: CMakeFiles/rootstream.dir/src/opus_codec.c.o +rootstream: CMakeFiles/rootstream.dir/src/display_sdl2.c.o +rootstream: CMakeFiles/rootstream.dir/src/config.c.o +rootstream: CMakeFiles/rootstream.dir/src/latency.c.o +rootstream: CMakeFiles/rootstream.dir/src/drm_capture.c.o +rootstream: CMakeFiles/rootstream.dir/src/x11_capture.c.o +rootstream: CMakeFiles/rootstream.dir/src/dummy_capture.c.o +rootstream: CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o +rootstream: CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o +rootstream: CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o +rootstream: CMakeFiles/rootstream.dir/src/audio_capture.c.o +rootstream: CMakeFiles/rootstream.dir/src/audio_playback.c.o +rootstream: CMakeFiles/rootstream.dir/src/input.c.o +rootstream: CMakeFiles/rootstream.dir/src/discovery.c.o +rootstream: CMakeFiles/rootstream.dir/src/service.c.o +rootstream: CMakeFiles/rootstream.dir/src/recording.c.o +rootstream: CMakeFiles/rootstream.dir/src/qrcode.c.o +rootstream: CMakeFiles/rootstream.dir/src/tray.c.o +rootstream: CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o +rootstream: CMakeFiles/rootstream.dir/build.make +rootstream: CMakeFiles/rootstream.dir/compiler_depend.ts +rootstream: /usr/lib/x86_64-linux-gnu/libSDL2.so +rootstream: CMakeFiles/rootstream.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Linking C executable rootstream" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/rootstream.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/rootstream.dir/build: rootstream +.PHONY : CMakeFiles/rootstream.dir/build + +CMakeFiles/rootstream.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/rootstream.dir/cmake_clean.cmake +.PHONY : CMakeFiles/rootstream.dir/clean + +CMakeFiles/rootstream.dir/depend: + cd /home/runner/work/RootStream/RootStream/_codeql_build_dir && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/rootstream.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/rootstream.dir/depend + diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/cmake_clean.cmake b/_codeql_build_dir/CMakeFiles/rootstream.dir/cmake_clean.cmake new file mode 100644 index 0000000..1c74171 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/cmake_clean.cmake @@ -0,0 +1,58 @@ +file(REMOVE_RECURSE + "CMakeFiles/rootstream.dir/link.d" + "CMakeFiles/rootstream.dir/src/audio_capture.c.o" + "CMakeFiles/rootstream.dir/src/audio_capture.c.o.d" + "CMakeFiles/rootstream.dir/src/audio_playback.c.o" + "CMakeFiles/rootstream.dir/src/audio_playback.c.o.d" + "CMakeFiles/rootstream.dir/src/config.c.o" + "CMakeFiles/rootstream.dir/src/config.c.o.d" + "CMakeFiles/rootstream.dir/src/core.c.o" + "CMakeFiles/rootstream.dir/src/core.c.o.d" + "CMakeFiles/rootstream.dir/src/crypto.c.o" + "CMakeFiles/rootstream.dir/src/crypto.c.o.d" + "CMakeFiles/rootstream.dir/src/discovery.c.o" + "CMakeFiles/rootstream.dir/src/discovery.c.o.d" + "CMakeFiles/rootstream.dir/src/display_sdl2.c.o" + "CMakeFiles/rootstream.dir/src/display_sdl2.c.o.d" + "CMakeFiles/rootstream.dir/src/drm_capture.c.o" + "CMakeFiles/rootstream.dir/src/drm_capture.c.o.d" + "CMakeFiles/rootstream.dir/src/dummy_capture.c.o" + "CMakeFiles/rootstream.dir/src/dummy_capture.c.o.d" + "CMakeFiles/rootstream.dir/src/input.c.o" + "CMakeFiles/rootstream.dir/src/input.c.o.d" + "CMakeFiles/rootstream.dir/src/latency.c.o" + "CMakeFiles/rootstream.dir/src/latency.c.o.d" + "CMakeFiles/rootstream.dir/src/main.c.o" + "CMakeFiles/rootstream.dir/src/main.c.o.d" + "CMakeFiles/rootstream.dir/src/network.c.o" + "CMakeFiles/rootstream.dir/src/network.c.o.d" + "CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o" + "CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o.d" + "CMakeFiles/rootstream.dir/src/opus_codec.c.o" + "CMakeFiles/rootstream.dir/src/opus_codec.c.o.d" + "CMakeFiles/rootstream.dir/src/packet_validate.c.o" + "CMakeFiles/rootstream.dir/src/packet_validate.c.o.d" + "CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o" + "CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o.d" + "CMakeFiles/rootstream.dir/src/qrcode.c.o" + "CMakeFiles/rootstream.dir/src/qrcode.c.o.d" + "CMakeFiles/rootstream.dir/src/recording.c.o" + "CMakeFiles/rootstream.dir/src/recording.c.o.d" + "CMakeFiles/rootstream.dir/src/service.c.o" + "CMakeFiles/rootstream.dir/src/service.c.o.d" + "CMakeFiles/rootstream.dir/src/tray.c.o" + "CMakeFiles/rootstream.dir/src/tray.c.o.d" + "CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o" + "CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o.d" + "CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o" + "CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o.d" + "CMakeFiles/rootstream.dir/src/x11_capture.c.o" + "CMakeFiles/rootstream.dir/src/x11_capture.c.o.d" + "rootstream" + "rootstream.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/rootstream.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/compiler_depend.make b/_codeql_build_dir/CMakeFiles/rootstream.dir/compiler_depend.make new file mode 100644 index 0000000..f6acb3e --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for rootstream. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/compiler_depend.ts b/_codeql_build_dir/CMakeFiles/rootstream.dir/compiler_depend.ts new file mode 100644 index 0000000..d3529e2 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for rootstream. diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/depend.make b/_codeql_build_dir/CMakeFiles/rootstream.dir/depend.make new file mode 100644 index 0000000..0b7aed9 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for rootstream. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/flags.make b/_codeql_build_dir/CMakeFiles/rootstream.dir/flags.make new file mode 100644 index 0000000..a8806f5 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# compile C with /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc +C_DEFINES = -DHAVE_AVAHI -DHAVE_VAAPI -DHAVE_X11 + +C_INCLUDES = -I/home/runner/work/RootStream/RootStream/include -I/usr/include/libdrm -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/webp -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/opus -isystem /usr/include/SDL2 + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -Wextra -Werror -Wno-deprecated-declarations -Wno-format-truncation -Wno-stringop-truncation + diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/link.txt b/_codeql_build_dir/CMakeFiles/rootstream.dir/link.txt new file mode 100644 index 0000000..eeadb39 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/link.txt @@ -0,0 +1 @@ +/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/rootstream.dir/link.d CMakeFiles/rootstream.dir/src/main.c.o CMakeFiles/rootstream.dir/src/core.c.o CMakeFiles/rootstream.dir/src/crypto.c.o CMakeFiles/rootstream.dir/src/network.c.o CMakeFiles/rootstream.dir/src/packet_validate.c.o CMakeFiles/rootstream.dir/src/opus_codec.c.o CMakeFiles/rootstream.dir/src/display_sdl2.c.o CMakeFiles/rootstream.dir/src/config.c.o CMakeFiles/rootstream.dir/src/latency.c.o CMakeFiles/rootstream.dir/src/drm_capture.c.o CMakeFiles/rootstream.dir/src/x11_capture.c.o CMakeFiles/rootstream.dir/src/dummy_capture.c.o CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o CMakeFiles/rootstream.dir/src/audio_capture.c.o CMakeFiles/rootstream.dir/src/audio_playback.c.o CMakeFiles/rootstream.dir/src/input.c.o CMakeFiles/rootstream.dir/src/discovery.c.o CMakeFiles/rootstream.dir/src/service.c.o CMakeFiles/rootstream.dir/src/recording.c.o CMakeFiles/rootstream.dir/src/qrcode.c.o CMakeFiles/rootstream.dir/src/tray.c.o CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o -o rootstream /usr/lib/x86_64-linux-gnu/libSDL2.so -ldrm -lm -lpthread -lsodium -lopus -lva-drm -lva -lasound -lgtk-3 -lgdk-3 -lz -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lavahi-common -lavahi-client -lX11 -lqrencode -lpng16 diff --git a/_codeql_build_dir/CMakeFiles/rootstream.dir/progress.make b/_codeql_build_dir/CMakeFiles/rootstream.dir/progress.make new file mode 100644 index 0000000..558cfc4 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rootstream.dir/progress.make @@ -0,0 +1,26 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = 17 +CMAKE_PROGRESS_18 = 18 +CMAKE_PROGRESS_19 = 19 +CMAKE_PROGRESS_20 = 20 +CMAKE_PROGRESS_21 = 21 +CMAKE_PROGRESS_22 = 22 +CMAKE_PROGRESS_23 = 23 +CMAKE_PROGRESS_24 = 24 +CMAKE_PROGRESS_25 = 25 + diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/DependInfo.cmake b/_codeql_build_dir/CMakeFiles/rstr-player.dir/DependInfo.cmake new file mode 100644 index 0000000..196fffc --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/DependInfo.cmake @@ -0,0 +1,36 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/runner/work/RootStream/RootStream/src/audio_playback.c" "CMakeFiles/rstr-player.dir/src/audio_playback.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/audio_playback.c.o.d" + "/home/runner/work/RootStream/RootStream/src/config.c" "CMakeFiles/rstr-player.dir/src/config.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/config.c.o.d" + "/home/runner/work/RootStream/RootStream/src/crypto.c" "CMakeFiles/rstr-player.dir/src/crypto.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/crypto.c.o.d" + "/home/runner/work/RootStream/RootStream/src/display_sdl2.c" "CMakeFiles/rstr-player.dir/src/display_sdl2.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/display_sdl2.c.o.d" + "/home/runner/work/RootStream/RootStream/src/input.c" "CMakeFiles/rstr-player.dir/src/input.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/input.c.o.d" + "/home/runner/work/RootStream/RootStream/src/latency.c" "CMakeFiles/rstr-player.dir/src/latency.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/latency.c.o.d" + "/home/runner/work/RootStream/RootStream/src/network.c" "CMakeFiles/rstr-player.dir/src/network.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/network.c.o.d" + "/home/runner/work/RootStream/RootStream/src/opus_codec.c" "CMakeFiles/rstr-player.dir/src/opus_codec.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/opus_codec.c.o.d" + "/home/runner/work/RootStream/RootStream/src/packet_validate.c" "CMakeFiles/rstr-player.dir/src/packet_validate.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/packet_validate.c.o.d" + "/home/runner/work/RootStream/RootStream/src/platform/platform_linux.c" "CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o.d" + "/home/runner/work/RootStream/RootStream/src/recording.c" "CMakeFiles/rstr-player.dir/src/recording.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/recording.c.o.d" + "/home/runner/work/RootStream/RootStream/src/vaapi_decoder.c" "CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o" "gcc" "CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o.d" + "/home/runner/work/RootStream/RootStream/tools/rstr-player.c" "CMakeFiles/rstr-player.dir/tools/rstr-player.c.o" "gcc" "CMakeFiles/rstr-player.dir/tools/rstr-player.c.o.d" + "" "rstr-player" "gcc" "CMakeFiles/rstr-player.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/build.make b/_codeql_build_dir/CMakeFiles/rstr-player.dir/build.make new file mode 100644 index 0000000..ff528bc --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/build.make @@ -0,0 +1,310 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Produce verbose output by default. +VERBOSE = 1 + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/runner/work/RootStream/RootStream + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/runner/work/RootStream/RootStream/_codeql_build_dir + +# Include any dependencies generated for this target. +include CMakeFiles/rstr-player.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/rstr-player.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/rstr-player.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/rstr-player.dir/flags.make + +CMakeFiles/rstr-player.dir/codegen: +.PHONY : CMakeFiles/rstr-player.dir/codegen + +CMakeFiles/rstr-player.dir/tools/rstr-player.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/tools/rstr-player.c.o: /home/runner/work/RootStream/RootStream/tools/rstr-player.c +CMakeFiles/rstr-player.dir/tools/rstr-player.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/rstr-player.dir/tools/rstr-player.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/tools/rstr-player.c.o -MF CMakeFiles/rstr-player.dir/tools/rstr-player.c.o.d -o CMakeFiles/rstr-player.dir/tools/rstr-player.c.o -c /home/runner/work/RootStream/RootStream/tools/rstr-player.c + +CMakeFiles/rstr-player.dir/tools/rstr-player.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/tools/rstr-player.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/tools/rstr-player.c > CMakeFiles/rstr-player.dir/tools/rstr-player.c.i + +CMakeFiles/rstr-player.dir/tools/rstr-player.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/tools/rstr-player.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/tools/rstr-player.c -o CMakeFiles/rstr-player.dir/tools/rstr-player.c.s + +CMakeFiles/rstr-player.dir/src/recording.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/recording.c.o: /home/runner/work/RootStream/RootStream/src/recording.c +CMakeFiles/rstr-player.dir/src/recording.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/rstr-player.dir/src/recording.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/recording.c.o -MF CMakeFiles/rstr-player.dir/src/recording.c.o.d -o CMakeFiles/rstr-player.dir/src/recording.c.o -c /home/runner/work/RootStream/RootStream/src/recording.c + +CMakeFiles/rstr-player.dir/src/recording.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/recording.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/recording.c > CMakeFiles/rstr-player.dir/src/recording.c.i + +CMakeFiles/rstr-player.dir/src/recording.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/recording.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/recording.c -o CMakeFiles/rstr-player.dir/src/recording.c.s + +CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o: /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c +CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o -MF CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o.d -o CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o -c /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c + +CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c > CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.i + +CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/vaapi_decoder.c -o CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.s + +CMakeFiles/rstr-player.dir/src/display_sdl2.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/display_sdl2.c.o: /home/runner/work/RootStream/RootStream/src/display_sdl2.c +CMakeFiles/rstr-player.dir/src/display_sdl2.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/rstr-player.dir/src/display_sdl2.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/display_sdl2.c.o -MF CMakeFiles/rstr-player.dir/src/display_sdl2.c.o.d -o CMakeFiles/rstr-player.dir/src/display_sdl2.c.o -c /home/runner/work/RootStream/RootStream/src/display_sdl2.c + +CMakeFiles/rstr-player.dir/src/display_sdl2.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/display_sdl2.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/display_sdl2.c > CMakeFiles/rstr-player.dir/src/display_sdl2.c.i + +CMakeFiles/rstr-player.dir/src/display_sdl2.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/display_sdl2.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/display_sdl2.c -o CMakeFiles/rstr-player.dir/src/display_sdl2.c.s + +CMakeFiles/rstr-player.dir/src/network.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/network.c.o: /home/runner/work/RootStream/RootStream/src/network.c +CMakeFiles/rstr-player.dir/src/network.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/rstr-player.dir/src/network.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/network.c.o -MF CMakeFiles/rstr-player.dir/src/network.c.o.d -o CMakeFiles/rstr-player.dir/src/network.c.o -c /home/runner/work/RootStream/RootStream/src/network.c + +CMakeFiles/rstr-player.dir/src/network.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/network.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/network.c > CMakeFiles/rstr-player.dir/src/network.c.i + +CMakeFiles/rstr-player.dir/src/network.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/network.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/network.c -o CMakeFiles/rstr-player.dir/src/network.c.s + +CMakeFiles/rstr-player.dir/src/packet_validate.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/packet_validate.c.o: /home/runner/work/RootStream/RootStream/src/packet_validate.c +CMakeFiles/rstr-player.dir/src/packet_validate.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/rstr-player.dir/src/packet_validate.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/packet_validate.c.o -MF CMakeFiles/rstr-player.dir/src/packet_validate.c.o.d -o CMakeFiles/rstr-player.dir/src/packet_validate.c.o -c /home/runner/work/RootStream/RootStream/src/packet_validate.c + +CMakeFiles/rstr-player.dir/src/packet_validate.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/packet_validate.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/packet_validate.c > CMakeFiles/rstr-player.dir/src/packet_validate.c.i + +CMakeFiles/rstr-player.dir/src/packet_validate.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/packet_validate.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/packet_validate.c -o CMakeFiles/rstr-player.dir/src/packet_validate.c.s + +CMakeFiles/rstr-player.dir/src/crypto.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/crypto.c.o: /home/runner/work/RootStream/RootStream/src/crypto.c +CMakeFiles/rstr-player.dir/src/crypto.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building C object CMakeFiles/rstr-player.dir/src/crypto.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/crypto.c.o -MF CMakeFiles/rstr-player.dir/src/crypto.c.o.d -o CMakeFiles/rstr-player.dir/src/crypto.c.o -c /home/runner/work/RootStream/RootStream/src/crypto.c + +CMakeFiles/rstr-player.dir/src/crypto.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/crypto.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/crypto.c > CMakeFiles/rstr-player.dir/src/crypto.c.i + +CMakeFiles/rstr-player.dir/src/crypto.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/crypto.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/crypto.c -o CMakeFiles/rstr-player.dir/src/crypto.c.s + +CMakeFiles/rstr-player.dir/src/config.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/config.c.o: /home/runner/work/RootStream/RootStream/src/config.c +CMakeFiles/rstr-player.dir/src/config.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building C object CMakeFiles/rstr-player.dir/src/config.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/config.c.o -MF CMakeFiles/rstr-player.dir/src/config.c.o.d -o CMakeFiles/rstr-player.dir/src/config.c.o -c /home/runner/work/RootStream/RootStream/src/config.c + +CMakeFiles/rstr-player.dir/src/config.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/config.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/config.c > CMakeFiles/rstr-player.dir/src/config.c.i + +CMakeFiles/rstr-player.dir/src/config.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/config.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/config.c -o CMakeFiles/rstr-player.dir/src/config.c.s + +CMakeFiles/rstr-player.dir/src/input.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/input.c.o: /home/runner/work/RootStream/RootStream/src/input.c +CMakeFiles/rstr-player.dir/src/input.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building C object CMakeFiles/rstr-player.dir/src/input.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/input.c.o -MF CMakeFiles/rstr-player.dir/src/input.c.o.d -o CMakeFiles/rstr-player.dir/src/input.c.o -c /home/runner/work/RootStream/RootStream/src/input.c + +CMakeFiles/rstr-player.dir/src/input.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/input.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/input.c > CMakeFiles/rstr-player.dir/src/input.c.i + +CMakeFiles/rstr-player.dir/src/input.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/input.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/input.c -o CMakeFiles/rstr-player.dir/src/input.c.s + +CMakeFiles/rstr-player.dir/src/opus_codec.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/opus_codec.c.o: /home/runner/work/RootStream/RootStream/src/opus_codec.c +CMakeFiles/rstr-player.dir/src/opus_codec.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building C object CMakeFiles/rstr-player.dir/src/opus_codec.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/opus_codec.c.o -MF CMakeFiles/rstr-player.dir/src/opus_codec.c.o.d -o CMakeFiles/rstr-player.dir/src/opus_codec.c.o -c /home/runner/work/RootStream/RootStream/src/opus_codec.c + +CMakeFiles/rstr-player.dir/src/opus_codec.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/opus_codec.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/opus_codec.c > CMakeFiles/rstr-player.dir/src/opus_codec.c.i + +CMakeFiles/rstr-player.dir/src/opus_codec.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/opus_codec.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/opus_codec.c -o CMakeFiles/rstr-player.dir/src/opus_codec.c.s + +CMakeFiles/rstr-player.dir/src/audio_playback.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/audio_playback.c.o: /home/runner/work/RootStream/RootStream/src/audio_playback.c +CMakeFiles/rstr-player.dir/src/audio_playback.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building C object CMakeFiles/rstr-player.dir/src/audio_playback.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/audio_playback.c.o -MF CMakeFiles/rstr-player.dir/src/audio_playback.c.o.d -o CMakeFiles/rstr-player.dir/src/audio_playback.c.o -c /home/runner/work/RootStream/RootStream/src/audio_playback.c + +CMakeFiles/rstr-player.dir/src/audio_playback.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/audio_playback.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/audio_playback.c > CMakeFiles/rstr-player.dir/src/audio_playback.c.i + +CMakeFiles/rstr-player.dir/src/audio_playback.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/audio_playback.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/audio_playback.c -o CMakeFiles/rstr-player.dir/src/audio_playback.c.s + +CMakeFiles/rstr-player.dir/src/latency.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/latency.c.o: /home/runner/work/RootStream/RootStream/src/latency.c +CMakeFiles/rstr-player.dir/src/latency.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building C object CMakeFiles/rstr-player.dir/src/latency.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/latency.c.o -MF CMakeFiles/rstr-player.dir/src/latency.c.o.d -o CMakeFiles/rstr-player.dir/src/latency.c.o -c /home/runner/work/RootStream/RootStream/src/latency.c + +CMakeFiles/rstr-player.dir/src/latency.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/latency.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/latency.c > CMakeFiles/rstr-player.dir/src/latency.c.i + +CMakeFiles/rstr-player.dir/src/latency.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/latency.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/latency.c -o CMakeFiles/rstr-player.dir/src/latency.c.s + +CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o: CMakeFiles/rstr-player.dir/flags.make +CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o: /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c +CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o: CMakeFiles/rstr-player.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building C object CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o -MF CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o.d -o CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o -c /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c + +CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c > CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.i + +CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c -o CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.s + +# Object files for target rstr-player +rstr__player_OBJECTS = \ +"CMakeFiles/rstr-player.dir/tools/rstr-player.c.o" \ +"CMakeFiles/rstr-player.dir/src/recording.c.o" \ +"CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o" \ +"CMakeFiles/rstr-player.dir/src/display_sdl2.c.o" \ +"CMakeFiles/rstr-player.dir/src/network.c.o" \ +"CMakeFiles/rstr-player.dir/src/packet_validate.c.o" \ +"CMakeFiles/rstr-player.dir/src/crypto.c.o" \ +"CMakeFiles/rstr-player.dir/src/config.c.o" \ +"CMakeFiles/rstr-player.dir/src/input.c.o" \ +"CMakeFiles/rstr-player.dir/src/opus_codec.c.o" \ +"CMakeFiles/rstr-player.dir/src/audio_playback.c.o" \ +"CMakeFiles/rstr-player.dir/src/latency.c.o" \ +"CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o" + +# External object files for target rstr-player +rstr__player_EXTERNAL_OBJECTS = + +rstr-player: CMakeFiles/rstr-player.dir/tools/rstr-player.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/recording.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/display_sdl2.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/network.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/packet_validate.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/crypto.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/config.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/input.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/opus_codec.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/audio_playback.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/latency.c.o +rstr-player: CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o +rstr-player: CMakeFiles/rstr-player.dir/build.make +rstr-player: CMakeFiles/rstr-player.dir/compiler_depend.ts +rstr-player: /usr/lib/x86_64-linux-gnu/libSDL2.so +rstr-player: CMakeFiles/rstr-player.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Linking C executable rstr-player" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/rstr-player.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/rstr-player.dir/build: rstr-player +.PHONY : CMakeFiles/rstr-player.dir/build + +CMakeFiles/rstr-player.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/rstr-player.dir/cmake_clean.cmake +.PHONY : CMakeFiles/rstr-player.dir/clean + +CMakeFiles/rstr-player.dir/depend: + cd /home/runner/work/RootStream/RootStream/_codeql_build_dir && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/rstr-player.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/rstr-player.dir/depend + diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/cmake_clean.cmake b/_codeql_build_dir/CMakeFiles/rstr-player.dir/cmake_clean.cmake new file mode 100644 index 0000000..9a00a77 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/cmake_clean.cmake @@ -0,0 +1,36 @@ +file(REMOVE_RECURSE + "CMakeFiles/rstr-player.dir/link.d" + "CMakeFiles/rstr-player.dir/src/audio_playback.c.o" + "CMakeFiles/rstr-player.dir/src/audio_playback.c.o.d" + "CMakeFiles/rstr-player.dir/src/config.c.o" + "CMakeFiles/rstr-player.dir/src/config.c.o.d" + "CMakeFiles/rstr-player.dir/src/crypto.c.o" + "CMakeFiles/rstr-player.dir/src/crypto.c.o.d" + "CMakeFiles/rstr-player.dir/src/display_sdl2.c.o" + "CMakeFiles/rstr-player.dir/src/display_sdl2.c.o.d" + "CMakeFiles/rstr-player.dir/src/input.c.o" + "CMakeFiles/rstr-player.dir/src/input.c.o.d" + "CMakeFiles/rstr-player.dir/src/latency.c.o" + "CMakeFiles/rstr-player.dir/src/latency.c.o.d" + "CMakeFiles/rstr-player.dir/src/network.c.o" + "CMakeFiles/rstr-player.dir/src/network.c.o.d" + "CMakeFiles/rstr-player.dir/src/opus_codec.c.o" + "CMakeFiles/rstr-player.dir/src/opus_codec.c.o.d" + "CMakeFiles/rstr-player.dir/src/packet_validate.c.o" + "CMakeFiles/rstr-player.dir/src/packet_validate.c.o.d" + "CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o" + "CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o.d" + "CMakeFiles/rstr-player.dir/src/recording.c.o" + "CMakeFiles/rstr-player.dir/src/recording.c.o.d" + "CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o" + "CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o.d" + "CMakeFiles/rstr-player.dir/tools/rstr-player.c.o" + "CMakeFiles/rstr-player.dir/tools/rstr-player.c.o.d" + "rstr-player" + "rstr-player.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/rstr-player.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/compiler_depend.make b/_codeql_build_dir/CMakeFiles/rstr-player.dir/compiler_depend.make new file mode 100644 index 0000000..9453bab --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for rstr-player. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/compiler_depend.ts b/_codeql_build_dir/CMakeFiles/rstr-player.dir/compiler_depend.ts new file mode 100644 index 0000000..88a3c3c --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for rstr-player. diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/depend.make b/_codeql_build_dir/CMakeFiles/rstr-player.dir/depend.make new file mode 100644 index 0000000..003563a --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for rstr-player. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/flags.make b/_codeql_build_dir/CMakeFiles/rstr-player.dir/flags.make new file mode 100644 index 0000000..7f1fb88 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# compile C with /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc +C_DEFINES = -DHAVE_AVAHI -DHAVE_VAAPI -DHAVE_X11 + +C_INCLUDES = -I/home/runner/work/RootStream/RootStream/include -isystem /usr/include/SDL2 + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -Wextra -Werror -Wno-deprecated-declarations -Wno-format-truncation -Wno-stringop-truncation + diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/link.txt b/_codeql_build_dir/CMakeFiles/rstr-player.dir/link.txt new file mode 100644 index 0000000..300edd2 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/link.txt @@ -0,0 +1 @@ +/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/rstr-player.dir/link.d "CMakeFiles/rstr-player.dir/tools/rstr-player.c.o" "CMakeFiles/rstr-player.dir/src/recording.c.o" "CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o" "CMakeFiles/rstr-player.dir/src/display_sdl2.c.o" "CMakeFiles/rstr-player.dir/src/network.c.o" "CMakeFiles/rstr-player.dir/src/packet_validate.c.o" "CMakeFiles/rstr-player.dir/src/crypto.c.o" "CMakeFiles/rstr-player.dir/src/config.c.o" "CMakeFiles/rstr-player.dir/src/input.c.o" "CMakeFiles/rstr-player.dir/src/opus_codec.c.o" "CMakeFiles/rstr-player.dir/src/audio_playback.c.o" "CMakeFiles/rstr-player.dir/src/latency.c.o" "CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o" -o rstr-player /usr/lib/x86_64-linux-gnu/libSDL2.so -lva-drm -lva -lasound -lsodium -lavahi-common -lavahi-client -lm -lpthread -lopus diff --git a/_codeql_build_dir/CMakeFiles/rstr-player.dir/progress.make b/_codeql_build_dir/CMakeFiles/rstr-player.dir/progress.make new file mode 100644 index 0000000..f15521c --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/rstr-player.dir/progress.make @@ -0,0 +1,15 @@ +CMAKE_PROGRESS_1 = 26 +CMAKE_PROGRESS_2 = 27 +CMAKE_PROGRESS_3 = 28 +CMAKE_PROGRESS_4 = 29 +CMAKE_PROGRESS_5 = 30 +CMAKE_PROGRESS_6 = 31 +CMAKE_PROGRESS_7 = 32 +CMAKE_PROGRESS_8 = 33 +CMAKE_PROGRESS_9 = 34 +CMAKE_PROGRESS_10 = 35 +CMAKE_PROGRESS_11 = 36 +CMAKE_PROGRESS_12 = 37 +CMAKE_PROGRESS_13 = 38 +CMAKE_PROGRESS_14 = 39 + diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/DependInfo.cmake b/_codeql_build_dir/CMakeFiles/test_crypto.dir/DependInfo.cmake new file mode 100644 index 0000000..f21a963 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/DependInfo.cmake @@ -0,0 +1,26 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/runner/work/RootStream/RootStream/src/crypto.c" "CMakeFiles/test_crypto.dir/src/crypto.c.o" "gcc" "CMakeFiles/test_crypto.dir/src/crypto.c.o.d" + "/home/runner/work/RootStream/RootStream/src/platform/platform_linux.c" "CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o" "gcc" "CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o.d" + "/home/runner/work/RootStream/RootStream/tests/unit/test_crypto.c" "CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o" "gcc" "CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o.d" + "" "test_crypto" "gcc" "CMakeFiles/test_crypto.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/build.make b/_codeql_build_dir/CMakeFiles/test_crypto.dir/build.make new file mode 100644 index 0000000..ae4843d --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/build.make @@ -0,0 +1,149 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Produce verbose output by default. +VERBOSE = 1 + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/runner/work/RootStream/RootStream + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/runner/work/RootStream/RootStream/_codeql_build_dir + +# Include any dependencies generated for this target. +include CMakeFiles/test_crypto.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/test_crypto.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/test_crypto.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/test_crypto.dir/flags.make + +CMakeFiles/test_crypto.dir/codegen: +.PHONY : CMakeFiles/test_crypto.dir/codegen + +CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o: CMakeFiles/test_crypto.dir/flags.make +CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o: /home/runner/work/RootStream/RootStream/tests/unit/test_crypto.c +CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o: CMakeFiles/test_crypto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o -MF CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o.d -o CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o -c /home/runner/work/RootStream/RootStream/tests/unit/test_crypto.c + +CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/tests/unit/test_crypto.c > CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.i + +CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/tests/unit/test_crypto.c -o CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.s + +CMakeFiles/test_crypto.dir/src/crypto.c.o: CMakeFiles/test_crypto.dir/flags.make +CMakeFiles/test_crypto.dir/src/crypto.c.o: /home/runner/work/RootStream/RootStream/src/crypto.c +CMakeFiles/test_crypto.dir/src/crypto.c.o: CMakeFiles/test_crypto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/test_crypto.dir/src/crypto.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/test_crypto.dir/src/crypto.c.o -MF CMakeFiles/test_crypto.dir/src/crypto.c.o.d -o CMakeFiles/test_crypto.dir/src/crypto.c.o -c /home/runner/work/RootStream/RootStream/src/crypto.c + +CMakeFiles/test_crypto.dir/src/crypto.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/test_crypto.dir/src/crypto.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/crypto.c > CMakeFiles/test_crypto.dir/src/crypto.c.i + +CMakeFiles/test_crypto.dir/src/crypto.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/test_crypto.dir/src/crypto.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/crypto.c -o CMakeFiles/test_crypto.dir/src/crypto.c.s + +CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o: CMakeFiles/test_crypto.dir/flags.make +CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o: /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c +CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o: CMakeFiles/test_crypto.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o -MF CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o.d -o CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o -c /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c + +CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c > CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.i + +CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/platform/platform_linux.c -o CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.s + +# Object files for target test_crypto +test_crypto_OBJECTS = \ +"CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o" \ +"CMakeFiles/test_crypto.dir/src/crypto.c.o" \ +"CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o" + +# External object files for target test_crypto +test_crypto_EXTERNAL_OBJECTS = + +test_crypto: CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o +test_crypto: CMakeFiles/test_crypto.dir/src/crypto.c.o +test_crypto: CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o +test_crypto: CMakeFiles/test_crypto.dir/build.make +test_crypto: CMakeFiles/test_crypto.dir/compiler_depend.ts +test_crypto: CMakeFiles/test_crypto.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable test_crypto" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_crypto.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/test_crypto.dir/build: test_crypto +.PHONY : CMakeFiles/test_crypto.dir/build + +CMakeFiles/test_crypto.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/test_crypto.dir/cmake_clean.cmake +.PHONY : CMakeFiles/test_crypto.dir/clean + +CMakeFiles/test_crypto.dir/depend: + cd /home/runner/work/RootStream/RootStream/_codeql_build_dir && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/test_crypto.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/test_crypto.dir/depend + diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/cmake_clean.cmake b/_codeql_build_dir/CMakeFiles/test_crypto.dir/cmake_clean.cmake new file mode 100644 index 0000000..6d8fd87 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/cmake_clean.cmake @@ -0,0 +1,16 @@ +file(REMOVE_RECURSE + "CMakeFiles/test_crypto.dir/link.d" + "CMakeFiles/test_crypto.dir/src/crypto.c.o" + "CMakeFiles/test_crypto.dir/src/crypto.c.o.d" + "CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o" + "CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o.d" + "CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o" + "CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o.d" + "test_crypto" + "test_crypto.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/test_crypto.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/compiler_depend.make b/_codeql_build_dir/CMakeFiles/test_crypto.dir/compiler_depend.make new file mode 100644 index 0000000..94a4aa3 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for test_crypto. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/compiler_depend.ts b/_codeql_build_dir/CMakeFiles/test_crypto.dir/compiler_depend.ts new file mode 100644 index 0000000..9a72273 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for test_crypto. diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/depend.make b/_codeql_build_dir/CMakeFiles/test_crypto.dir/depend.make new file mode 100644 index 0000000..7669263 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for test_crypto. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/flags.make b/_codeql_build_dir/CMakeFiles/test_crypto.dir/flags.make new file mode 100644 index 0000000..f156444 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# compile C with /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc +C_DEFINES = -DHAVE_AVAHI -DHAVE_VAAPI -DHAVE_X11 + +C_INCLUDES = -I/home/runner/work/RootStream/RootStream/include + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -Wextra -Werror -Wno-deprecated-declarations -Wno-format-truncation -Wno-stringop-truncation + diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/link.txt b/_codeql_build_dir/CMakeFiles/test_crypto.dir/link.txt new file mode 100644 index 0000000..5315f34 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/link.txt @@ -0,0 +1 @@ +/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/test_crypto.dir/link.d CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o CMakeFiles/test_crypto.dir/src/crypto.c.o CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o -o test_crypto -lsodium diff --git a/_codeql_build_dir/CMakeFiles/test_crypto.dir/progress.make b/_codeql_build_dir/CMakeFiles/test_crypto.dir/progress.make new file mode 100644 index 0000000..30bc12a --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_crypto.dir/progress.make @@ -0,0 +1,5 @@ +CMAKE_PROGRESS_1 = 40 +CMAKE_PROGRESS_2 = 41 +CMAKE_PROGRESS_3 = 42 +CMAKE_PROGRESS_4 = 43 + diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/DependInfo.cmake b/_codeql_build_dir/CMakeFiles/test_encoding.dir/DependInfo.cmake new file mode 100644 index 0000000..f1bcce8 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/runner/work/RootStream/RootStream/tests/unit/test_encoding.c" "CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o" "gcc" "CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o.d" + "" "test_encoding" "gcc" "CMakeFiles/test_encoding.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/build.make b/_codeql_build_dir/CMakeFiles/test_encoding.dir/build.make new file mode 100644 index 0000000..e3c726b --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/build.make @@ -0,0 +1,117 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Produce verbose output by default. +VERBOSE = 1 + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/runner/work/RootStream/RootStream + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/runner/work/RootStream/RootStream/_codeql_build_dir + +# Include any dependencies generated for this target. +include CMakeFiles/test_encoding.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/test_encoding.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/test_encoding.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/test_encoding.dir/flags.make + +CMakeFiles/test_encoding.dir/codegen: +.PHONY : CMakeFiles/test_encoding.dir/codegen + +CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o: CMakeFiles/test_encoding.dir/flags.make +CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o: /home/runner/work/RootStream/RootStream/tests/unit/test_encoding.c +CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o: CMakeFiles/test_encoding.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o -MF CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o.d -o CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o -c /home/runner/work/RootStream/RootStream/tests/unit/test_encoding.c + +CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/tests/unit/test_encoding.c > CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.i + +CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/tests/unit/test_encoding.c -o CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.s + +# Object files for target test_encoding +test_encoding_OBJECTS = \ +"CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o" + +# External object files for target test_encoding +test_encoding_EXTERNAL_OBJECTS = + +test_encoding: CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o +test_encoding: CMakeFiles/test_encoding.dir/build.make +test_encoding: CMakeFiles/test_encoding.dir/compiler_depend.ts +test_encoding: CMakeFiles/test_encoding.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable test_encoding" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_encoding.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/test_encoding.dir/build: test_encoding +.PHONY : CMakeFiles/test_encoding.dir/build + +CMakeFiles/test_encoding.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/test_encoding.dir/cmake_clean.cmake +.PHONY : CMakeFiles/test_encoding.dir/clean + +CMakeFiles/test_encoding.dir/depend: + cd /home/runner/work/RootStream/RootStream/_codeql_build_dir && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/test_encoding.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/test_encoding.dir/depend + diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/cmake_clean.cmake b/_codeql_build_dir/CMakeFiles/test_encoding.dir/cmake_clean.cmake new file mode 100644 index 0000000..0c98035 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +file(REMOVE_RECURSE + "CMakeFiles/test_encoding.dir/link.d" + "CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o" + "CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o.d" + "test_encoding" + "test_encoding.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/test_encoding.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/compiler_depend.make b/_codeql_build_dir/CMakeFiles/test_encoding.dir/compiler_depend.make new file mode 100644 index 0000000..ae2f562 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for test_encoding. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/compiler_depend.ts b/_codeql_build_dir/CMakeFiles/test_encoding.dir/compiler_depend.ts new file mode 100644 index 0000000..2e6761d --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for test_encoding. diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/depend.make b/_codeql_build_dir/CMakeFiles/test_encoding.dir/depend.make new file mode 100644 index 0000000..afaa66a --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for test_encoding. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/flags.make b/_codeql_build_dir/CMakeFiles/test_encoding.dir/flags.make new file mode 100644 index 0000000..f156444 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# compile C with /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc +C_DEFINES = -DHAVE_AVAHI -DHAVE_VAAPI -DHAVE_X11 + +C_INCLUDES = -I/home/runner/work/RootStream/RootStream/include + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -Wextra -Werror -Wno-deprecated-declarations -Wno-format-truncation -Wno-stringop-truncation + diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/link.txt b/_codeql_build_dir/CMakeFiles/test_encoding.dir/link.txt new file mode 100644 index 0000000..b6da4ab --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/link.txt @@ -0,0 +1 @@ +/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/test_encoding.dir/link.d CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o -o test_encoding diff --git a/_codeql_build_dir/CMakeFiles/test_encoding.dir/progress.make b/_codeql_build_dir/CMakeFiles/test_encoding.dir/progress.make new file mode 100644 index 0000000..c51eef3 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_encoding.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 44 +CMAKE_PROGRESS_2 = 45 + diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/DependInfo.cmake b/_codeql_build_dir/CMakeFiles/test_packet.dir/DependInfo.cmake new file mode 100644 index 0000000..0b98876 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/DependInfo.cmake @@ -0,0 +1,25 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/runner/work/RootStream/RootStream/src/packet_validate.c" "CMakeFiles/test_packet.dir/src/packet_validate.c.o" "gcc" "CMakeFiles/test_packet.dir/src/packet_validate.c.o.d" + "/home/runner/work/RootStream/RootStream/tests/unit/test_packet.c" "CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o" "gcc" "CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o.d" + "" "test_packet" "gcc" "CMakeFiles/test_packet.dir/link.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/build.make b/_codeql_build_dir/CMakeFiles/test_packet.dir/build.make new file mode 100644 index 0000000..f580d82 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/build.make @@ -0,0 +1,133 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Produce verbose output by default. +VERBOSE = 1 + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/runner/work/RootStream/RootStream + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/runner/work/RootStream/RootStream/_codeql_build_dir + +# Include any dependencies generated for this target. +include CMakeFiles/test_packet.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/test_packet.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/test_packet.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/test_packet.dir/flags.make + +CMakeFiles/test_packet.dir/codegen: +.PHONY : CMakeFiles/test_packet.dir/codegen + +CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o: CMakeFiles/test_packet.dir/flags.make +CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o: /home/runner/work/RootStream/RootStream/tests/unit/test_packet.c +CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o: CMakeFiles/test_packet.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o -MF CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o.d -o CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o -c /home/runner/work/RootStream/RootStream/tests/unit/test_packet.c + +CMakeFiles/test_packet.dir/tests/unit/test_packet.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/test_packet.dir/tests/unit/test_packet.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/tests/unit/test_packet.c > CMakeFiles/test_packet.dir/tests/unit/test_packet.c.i + +CMakeFiles/test_packet.dir/tests/unit/test_packet.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/test_packet.dir/tests/unit/test_packet.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/tests/unit/test_packet.c -o CMakeFiles/test_packet.dir/tests/unit/test_packet.c.s + +CMakeFiles/test_packet.dir/src/packet_validate.c.o: CMakeFiles/test_packet.dir/flags.make +CMakeFiles/test_packet.dir/src/packet_validate.c.o: /home/runner/work/RootStream/RootStream/src/packet_validate.c +CMakeFiles/test_packet.dir/src/packet_validate.c.o: CMakeFiles/test_packet.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/test_packet.dir/src/packet_validate.c.o" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/test_packet.dir/src/packet_validate.c.o -MF CMakeFiles/test_packet.dir/src/packet_validate.c.o.d -o CMakeFiles/test_packet.dir/src/packet_validate.c.o -c /home/runner/work/RootStream/RootStream/src/packet_validate.c + +CMakeFiles/test_packet.dir/src/packet_validate.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/test_packet.dir/src/packet_validate.c.i" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/runner/work/RootStream/RootStream/src/packet_validate.c > CMakeFiles/test_packet.dir/src/packet_validate.c.i + +CMakeFiles/test_packet.dir/src/packet_validate.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/test_packet.dir/src/packet_validate.c.s" + /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/runner/work/RootStream/RootStream/src/packet_validate.c -o CMakeFiles/test_packet.dir/src/packet_validate.c.s + +# Object files for target test_packet +test_packet_OBJECTS = \ +"CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o" \ +"CMakeFiles/test_packet.dir/src/packet_validate.c.o" + +# External object files for target test_packet +test_packet_EXTERNAL_OBJECTS = + +test_packet: CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o +test_packet: CMakeFiles/test_packet.dir/src/packet_validate.c.o +test_packet: CMakeFiles/test_packet.dir/build.make +test_packet: CMakeFiles/test_packet.dir/compiler_depend.ts +test_packet: CMakeFiles/test_packet.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable test_packet" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_packet.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/test_packet.dir/build: test_packet +.PHONY : CMakeFiles/test_packet.dir/build + +CMakeFiles/test_packet.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/test_packet.dir/cmake_clean.cmake +.PHONY : CMakeFiles/test_packet.dir/clean + +CMakeFiles/test_packet.dir/depend: + cd /home/runner/work/RootStream/RootStream/_codeql_build_dir && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles/test_packet.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/test_packet.dir/depend + diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/cmake_clean.cmake b/_codeql_build_dir/CMakeFiles/test_packet.dir/cmake_clean.cmake new file mode 100644 index 0000000..3438b8f --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/test_packet.dir/link.d" + "CMakeFiles/test_packet.dir/src/packet_validate.c.o" + "CMakeFiles/test_packet.dir/src/packet_validate.c.o.d" + "CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o" + "CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o.d" + "test_packet" + "test_packet.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/test_packet.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/compiler_depend.make b/_codeql_build_dir/CMakeFiles/test_packet.dir/compiler_depend.make new file mode 100644 index 0000000..4e0a493 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for test_packet. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/compiler_depend.ts b/_codeql_build_dir/CMakeFiles/test_packet.dir/compiler_depend.ts new file mode 100644 index 0000000..e6ce90f --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for test_packet. diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/depend.make b/_codeql_build_dir/CMakeFiles/test_packet.dir/depend.make new file mode 100644 index 0000000..4ef890f --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for test_packet. +# This may be replaced when dependencies are built. diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/flags.make b/_codeql_build_dir/CMakeFiles/test_packet.dir/flags.make new file mode 100644 index 0000000..f156444 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# compile C with /home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc +C_DEFINES = -DHAVE_AVAHI -DHAVE_VAAPI -DHAVE_X11 + +C_INCLUDES = -I/home/runner/work/RootStream/RootStream/include + +C_FLAGS = -O3 -DNDEBUG -std=gnu11 -Wall -Wextra -Werror -Wno-deprecated-declarations -Wno-format-truncation -Wno-stringop-truncation + diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/link.txt b/_codeql_build_dir/CMakeFiles/test_packet.dir/link.txt new file mode 100644 index 0000000..311071b --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/link.txt @@ -0,0 +1 @@ +/home/runner/work/RootStream/.codeql-scratch/dbs/cpp/working/autobuild/bin/cc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/test_packet.dir/link.d CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o CMakeFiles/test_packet.dir/src/packet_validate.c.o -o test_packet diff --git a/_codeql_build_dir/CMakeFiles/test_packet.dir/progress.make b/_codeql_build_dir/CMakeFiles/test_packet.dir/progress.make new file mode 100644 index 0000000..9b1b0e5 --- /dev/null +++ b/_codeql_build_dir/CMakeFiles/test_packet.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 46 +CMAKE_PROGRESS_2 = 47 +CMAKE_PROGRESS_3 = 48 + diff --git a/_codeql_build_dir/CTestTestfile.cmake b/_codeql_build_dir/CTestTestfile.cmake new file mode 100644 index 0000000..9a0b85d --- /dev/null +++ b/_codeql_build_dir/CTestTestfile.cmake @@ -0,0 +1,12 @@ +# CMake generated Testfile for +# Source directory: /home/runner/work/RootStream/RootStream +# Build directory: /home/runner/work/RootStream/RootStream/_codeql_build_dir +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test(crypto_tests "/home/runner/work/RootStream/RootStream/_codeql_build_dir/test_crypto") +set_tests_properties(crypto_tests PROPERTIES _BACKTRACE_TRIPLES "/home/runner/work/RootStream/RootStream/CMakeLists.txt;355;add_test;/home/runner/work/RootStream/RootStream/CMakeLists.txt;0;") +add_test(encoding_tests "/home/runner/work/RootStream/RootStream/_codeql_build_dir/test_encoding") +set_tests_properties(encoding_tests PROPERTIES _BACKTRACE_TRIPLES "/home/runner/work/RootStream/RootStream/CMakeLists.txt;359;add_test;/home/runner/work/RootStream/RootStream/CMakeLists.txt;0;") +add_test(packet_tests "/home/runner/work/RootStream/RootStream/_codeql_build_dir/test_packet") +set_tests_properties(packet_tests PROPERTIES _BACKTRACE_TRIPLES "/home/runner/work/RootStream/RootStream/CMakeLists.txt;363;add_test;/home/runner/work/RootStream/RootStream/CMakeLists.txt;0;") diff --git a/_codeql_build_dir/Makefile b/_codeql_build_dir/Makefile new file mode 100644 index 0000000..be83e49 --- /dev/null +++ b/_codeql_build_dir/Makefile @@ -0,0 +1,1074 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Produce verbose output by default. +VERBOSE = 1 + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/runner/work/RootStream/RootStream + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/runner/work/RootStream/RootStream/_codeql_build_dir + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..." + /usr/local/bin/ctest --force-new-ctest-process $(ARGS) +.PHONY : test + +# Special rule for the target test +test/fast: test +.PHONY : test/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." + /usr/local/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/local/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /usr/local/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." + /usr/local/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." + /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." + /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles /home/runner/work/RootStream/RootStream/_codeql_build_dir//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/RootStream/RootStream/_codeql_build_dir/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named rootstream + +# Build rule for target. +rootstream: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 rootstream +.PHONY : rootstream + +# fast build rule for target. +rootstream/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/build +.PHONY : rootstream/fast + +#============================================================================= +# Target rules for targets named rstr-player + +# Build rule for target. +rstr-player: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 rstr-player +.PHONY : rstr-player + +# fast build rule for target. +rstr-player/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/build +.PHONY : rstr-player/fast + +#============================================================================= +# Target rules for targets named test_crypto + +# Build rule for target. +test_crypto: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_crypto +.PHONY : test_crypto + +# fast build rule for target. +test_crypto/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/build +.PHONY : test_crypto/fast + +#============================================================================= +# Target rules for targets named test_encoding + +# Build rule for target. +test_encoding: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_encoding +.PHONY : test_encoding + +# fast build rule for target. +test_encoding/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/build +.PHONY : test_encoding/fast + +#============================================================================= +# Target rules for targets named test_packet + +# Build rule for target. +test_packet: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_packet +.PHONY : test_packet + +# fast build rule for target. +test_packet/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/build +.PHONY : test_packet/fast + +src/audio_capture.o: src/audio_capture.c.o +.PHONY : src/audio_capture.o + +# target to build an object file +src/audio_capture.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/audio_capture.c.o +.PHONY : src/audio_capture.c.o + +src/audio_capture.i: src/audio_capture.c.i +.PHONY : src/audio_capture.i + +# target to preprocess a source file +src/audio_capture.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/audio_capture.c.i +.PHONY : src/audio_capture.c.i + +src/audio_capture.s: src/audio_capture.c.s +.PHONY : src/audio_capture.s + +# target to generate assembly for a file +src/audio_capture.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/audio_capture.c.s +.PHONY : src/audio_capture.c.s + +src/audio_playback.o: src/audio_playback.c.o +.PHONY : src/audio_playback.o + +# target to build an object file +src/audio_playback.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/audio_playback.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/audio_playback.c.o +.PHONY : src/audio_playback.c.o + +src/audio_playback.i: src/audio_playback.c.i +.PHONY : src/audio_playback.i + +# target to preprocess a source file +src/audio_playback.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/audio_playback.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/audio_playback.c.i +.PHONY : src/audio_playback.c.i + +src/audio_playback.s: src/audio_playback.c.s +.PHONY : src/audio_playback.s + +# target to generate assembly for a file +src/audio_playback.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/audio_playback.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/audio_playback.c.s +.PHONY : src/audio_playback.c.s + +src/config.o: src/config.c.o +.PHONY : src/config.o + +# target to build an object file +src/config.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/config.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/config.c.o +.PHONY : src/config.c.o + +src/config.i: src/config.c.i +.PHONY : src/config.i + +# target to preprocess a source file +src/config.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/config.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/config.c.i +.PHONY : src/config.c.i + +src/config.s: src/config.c.s +.PHONY : src/config.s + +# target to generate assembly for a file +src/config.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/config.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/config.c.s +.PHONY : src/config.c.s + +src/core.o: src/core.c.o +.PHONY : src/core.o + +# target to build an object file +src/core.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/core.c.o +.PHONY : src/core.c.o + +src/core.i: src/core.c.i +.PHONY : src/core.i + +# target to preprocess a source file +src/core.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/core.c.i +.PHONY : src/core.c.i + +src/core.s: src/core.c.s +.PHONY : src/core.s + +# target to generate assembly for a file +src/core.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/core.c.s +.PHONY : src/core.c.s + +src/crypto.o: src/crypto.c.o +.PHONY : src/crypto.o + +# target to build an object file +src/crypto.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/crypto.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/crypto.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/src/crypto.c.o +.PHONY : src/crypto.c.o + +src/crypto.i: src/crypto.c.i +.PHONY : src/crypto.i + +# target to preprocess a source file +src/crypto.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/crypto.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/crypto.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/src/crypto.c.i +.PHONY : src/crypto.c.i + +src/crypto.s: src/crypto.c.s +.PHONY : src/crypto.s + +# target to generate assembly for a file +src/crypto.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/crypto.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/crypto.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/src/crypto.c.s +.PHONY : src/crypto.c.s + +src/discovery.o: src/discovery.c.o +.PHONY : src/discovery.o + +# target to build an object file +src/discovery.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/discovery.c.o +.PHONY : src/discovery.c.o + +src/discovery.i: src/discovery.c.i +.PHONY : src/discovery.i + +# target to preprocess a source file +src/discovery.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/discovery.c.i +.PHONY : src/discovery.c.i + +src/discovery.s: src/discovery.c.s +.PHONY : src/discovery.s + +# target to generate assembly for a file +src/discovery.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/discovery.c.s +.PHONY : src/discovery.c.s + +src/display_sdl2.o: src/display_sdl2.c.o +.PHONY : src/display_sdl2.o + +# target to build an object file +src/display_sdl2.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/display_sdl2.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/display_sdl2.c.o +.PHONY : src/display_sdl2.c.o + +src/display_sdl2.i: src/display_sdl2.c.i +.PHONY : src/display_sdl2.i + +# target to preprocess a source file +src/display_sdl2.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/display_sdl2.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/display_sdl2.c.i +.PHONY : src/display_sdl2.c.i + +src/display_sdl2.s: src/display_sdl2.c.s +.PHONY : src/display_sdl2.s + +# target to generate assembly for a file +src/display_sdl2.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/display_sdl2.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/display_sdl2.c.s +.PHONY : src/display_sdl2.c.s + +src/drm_capture.o: src/drm_capture.c.o +.PHONY : src/drm_capture.o + +# target to build an object file +src/drm_capture.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/drm_capture.c.o +.PHONY : src/drm_capture.c.o + +src/drm_capture.i: src/drm_capture.c.i +.PHONY : src/drm_capture.i + +# target to preprocess a source file +src/drm_capture.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/drm_capture.c.i +.PHONY : src/drm_capture.c.i + +src/drm_capture.s: src/drm_capture.c.s +.PHONY : src/drm_capture.s + +# target to generate assembly for a file +src/drm_capture.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/drm_capture.c.s +.PHONY : src/drm_capture.c.s + +src/dummy_capture.o: src/dummy_capture.c.o +.PHONY : src/dummy_capture.o + +# target to build an object file +src/dummy_capture.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/dummy_capture.c.o +.PHONY : src/dummy_capture.c.o + +src/dummy_capture.i: src/dummy_capture.c.i +.PHONY : src/dummy_capture.i + +# target to preprocess a source file +src/dummy_capture.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/dummy_capture.c.i +.PHONY : src/dummy_capture.c.i + +src/dummy_capture.s: src/dummy_capture.c.s +.PHONY : src/dummy_capture.s + +# target to generate assembly for a file +src/dummy_capture.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/dummy_capture.c.s +.PHONY : src/dummy_capture.c.s + +src/input.o: src/input.c.o +.PHONY : src/input.o + +# target to build an object file +src/input.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/input.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/input.c.o +.PHONY : src/input.c.o + +src/input.i: src/input.c.i +.PHONY : src/input.i + +# target to preprocess a source file +src/input.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/input.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/input.c.i +.PHONY : src/input.c.i + +src/input.s: src/input.c.s +.PHONY : src/input.s + +# target to generate assembly for a file +src/input.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/input.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/input.c.s +.PHONY : src/input.c.s + +src/latency.o: src/latency.c.o +.PHONY : src/latency.o + +# target to build an object file +src/latency.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/latency.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/latency.c.o +.PHONY : src/latency.c.o + +src/latency.i: src/latency.c.i +.PHONY : src/latency.i + +# target to preprocess a source file +src/latency.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/latency.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/latency.c.i +.PHONY : src/latency.c.i + +src/latency.s: src/latency.c.s +.PHONY : src/latency.s + +# target to generate assembly for a file +src/latency.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/latency.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/latency.c.s +.PHONY : src/latency.c.s + +src/main.o: src/main.c.o +.PHONY : src/main.o + +# target to build an object file +src/main.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/main.c.o +.PHONY : src/main.c.o + +src/main.i: src/main.c.i +.PHONY : src/main.i + +# target to preprocess a source file +src/main.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/main.c.i +.PHONY : src/main.c.i + +src/main.s: src/main.c.s +.PHONY : src/main.s + +# target to generate assembly for a file +src/main.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/main.c.s +.PHONY : src/main.c.s + +src/network.o: src/network.c.o +.PHONY : src/network.o + +# target to build an object file +src/network.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/network.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/network.c.o +.PHONY : src/network.c.o + +src/network.i: src/network.c.i +.PHONY : src/network.i + +# target to preprocess a source file +src/network.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/network.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/network.c.i +.PHONY : src/network.c.i + +src/network.s: src/network.c.s +.PHONY : src/network.s + +# target to generate assembly for a file +src/network.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/network.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/network.c.s +.PHONY : src/network.c.s + +src/nvenc_encoder.o: src/nvenc_encoder.c.o +.PHONY : src/nvenc_encoder.o + +# target to build an object file +src/nvenc_encoder.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/nvenc_encoder.c.o +.PHONY : src/nvenc_encoder.c.o + +src/nvenc_encoder.i: src/nvenc_encoder.c.i +.PHONY : src/nvenc_encoder.i + +# target to preprocess a source file +src/nvenc_encoder.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/nvenc_encoder.c.i +.PHONY : src/nvenc_encoder.c.i + +src/nvenc_encoder.s: src/nvenc_encoder.c.s +.PHONY : src/nvenc_encoder.s + +# target to generate assembly for a file +src/nvenc_encoder.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/nvenc_encoder.c.s +.PHONY : src/nvenc_encoder.c.s + +src/opus_codec.o: src/opus_codec.c.o +.PHONY : src/opus_codec.o + +# target to build an object file +src/opus_codec.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/opus_codec.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/opus_codec.c.o +.PHONY : src/opus_codec.c.o + +src/opus_codec.i: src/opus_codec.c.i +.PHONY : src/opus_codec.i + +# target to preprocess a source file +src/opus_codec.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/opus_codec.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/opus_codec.c.i +.PHONY : src/opus_codec.c.i + +src/opus_codec.s: src/opus_codec.c.s +.PHONY : src/opus_codec.s + +# target to generate assembly for a file +src/opus_codec.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/opus_codec.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/opus_codec.c.s +.PHONY : src/opus_codec.c.s + +src/packet_validate.o: src/packet_validate.c.o +.PHONY : src/packet_validate.o + +# target to build an object file +src/packet_validate.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/packet_validate.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/packet_validate.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/src/packet_validate.c.o +.PHONY : src/packet_validate.c.o + +src/packet_validate.i: src/packet_validate.c.i +.PHONY : src/packet_validate.i + +# target to preprocess a source file +src/packet_validate.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/packet_validate.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/packet_validate.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/src/packet_validate.c.i +.PHONY : src/packet_validate.c.i + +src/packet_validate.s: src/packet_validate.c.s +.PHONY : src/packet_validate.s + +# target to generate assembly for a file +src/packet_validate.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/packet_validate.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/packet_validate.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/src/packet_validate.c.s +.PHONY : src/packet_validate.c.s + +src/platform/platform_linux.o: src/platform/platform_linux.c.o +.PHONY : src/platform/platform_linux.o + +# target to build an object file +src/platform/platform_linux.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/platform/platform_linux.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.o +.PHONY : src/platform/platform_linux.c.o + +src/platform/platform_linux.i: src/platform/platform_linux.c.i +.PHONY : src/platform/platform_linux.i + +# target to preprocess a source file +src/platform/platform_linux.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/platform/platform_linux.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.i +.PHONY : src/platform/platform_linux.c.i + +src/platform/platform_linux.s: src/platform/platform_linux.c.s +.PHONY : src/platform/platform_linux.s + +# target to generate assembly for a file +src/platform/platform_linux.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/platform/platform_linux.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/platform/platform_linux.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/src/platform/platform_linux.c.s +.PHONY : src/platform/platform_linux.c.s + +src/qrcode.o: src/qrcode.c.o +.PHONY : src/qrcode.o + +# target to build an object file +src/qrcode.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/qrcode.c.o +.PHONY : src/qrcode.c.o + +src/qrcode.i: src/qrcode.c.i +.PHONY : src/qrcode.i + +# target to preprocess a source file +src/qrcode.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/qrcode.c.i +.PHONY : src/qrcode.c.i + +src/qrcode.s: src/qrcode.c.s +.PHONY : src/qrcode.s + +# target to generate assembly for a file +src/qrcode.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/qrcode.c.s +.PHONY : src/qrcode.c.s + +src/recording.o: src/recording.c.o +.PHONY : src/recording.o + +# target to build an object file +src/recording.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/recording.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/recording.c.o +.PHONY : src/recording.c.o + +src/recording.i: src/recording.c.i +.PHONY : src/recording.i + +# target to preprocess a source file +src/recording.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/recording.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/recording.c.i +.PHONY : src/recording.c.i + +src/recording.s: src/recording.c.s +.PHONY : src/recording.s + +# target to generate assembly for a file +src/recording.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/recording.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/recording.c.s +.PHONY : src/recording.c.s + +src/service.o: src/service.c.o +.PHONY : src/service.o + +# target to build an object file +src/service.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/service.c.o +.PHONY : src/service.c.o + +src/service.i: src/service.c.i +.PHONY : src/service.i + +# target to preprocess a source file +src/service.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/service.c.i +.PHONY : src/service.c.i + +src/service.s: src/service.c.s +.PHONY : src/service.s + +# target to generate assembly for a file +src/service.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/service.c.s +.PHONY : src/service.c.s + +src/tray.o: src/tray.c.o +.PHONY : src/tray.o + +# target to build an object file +src/tray.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/tray.c.o +.PHONY : src/tray.c.o + +src/tray.i: src/tray.c.i +.PHONY : src/tray.i + +# target to preprocess a source file +src/tray.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/tray.c.i +.PHONY : src/tray.c.i + +src/tray.s: src/tray.c.s +.PHONY : src/tray.s + +# target to generate assembly for a file +src/tray.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/tray.c.s +.PHONY : src/tray.c.s + +src/vaapi_decoder.o: src/vaapi_decoder.c.o +.PHONY : src/vaapi_decoder.o + +# target to build an object file +src/vaapi_decoder.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/vaapi_decoder.c.o + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.o +.PHONY : src/vaapi_decoder.c.o + +src/vaapi_decoder.i: src/vaapi_decoder.c.i +.PHONY : src/vaapi_decoder.i + +# target to preprocess a source file +src/vaapi_decoder.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/vaapi_decoder.c.i + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.i +.PHONY : src/vaapi_decoder.c.i + +src/vaapi_decoder.s: src/vaapi_decoder.c.s +.PHONY : src/vaapi_decoder.s + +# target to generate assembly for a file +src/vaapi_decoder.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/vaapi_decoder.c.s + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/src/vaapi_decoder.c.s +.PHONY : src/vaapi_decoder.c.s + +src/vaapi_encoder.o: src/vaapi_encoder.c.o +.PHONY : src/vaapi_encoder.o + +# target to build an object file +src/vaapi_encoder.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/vaapi_encoder.c.o +.PHONY : src/vaapi_encoder.c.o + +src/vaapi_encoder.i: src/vaapi_encoder.c.i +.PHONY : src/vaapi_encoder.i + +# target to preprocess a source file +src/vaapi_encoder.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/vaapi_encoder.c.i +.PHONY : src/vaapi_encoder.c.i + +src/vaapi_encoder.s: src/vaapi_encoder.c.s +.PHONY : src/vaapi_encoder.s + +# target to generate assembly for a file +src/vaapi_encoder.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/vaapi_encoder.c.s +.PHONY : src/vaapi_encoder.c.s + +src/x11_capture.o: src/x11_capture.c.o +.PHONY : src/x11_capture.o + +# target to build an object file +src/x11_capture.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/x11_capture.c.o +.PHONY : src/x11_capture.c.o + +src/x11_capture.i: src/x11_capture.c.i +.PHONY : src/x11_capture.i + +# target to preprocess a source file +src/x11_capture.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/x11_capture.c.i +.PHONY : src/x11_capture.c.i + +src/x11_capture.s: src/x11_capture.c.s +.PHONY : src/x11_capture.s + +# target to generate assembly for a file +src/x11_capture.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rootstream.dir/build.make CMakeFiles/rootstream.dir/src/x11_capture.c.s +.PHONY : src/x11_capture.c.s + +tests/unit/test_crypto.o: tests/unit/test_crypto.c.o +.PHONY : tests/unit/test_crypto.o + +# target to build an object file +tests/unit/test_crypto.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.o +.PHONY : tests/unit/test_crypto.c.o + +tests/unit/test_crypto.i: tests/unit/test_crypto.c.i +.PHONY : tests/unit/test_crypto.i + +# target to preprocess a source file +tests/unit/test_crypto.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.i +.PHONY : tests/unit/test_crypto.c.i + +tests/unit/test_crypto.s: tests/unit/test_crypto.c.s +.PHONY : tests/unit/test_crypto.s + +# target to generate assembly for a file +tests/unit/test_crypto.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_crypto.dir/build.make CMakeFiles/test_crypto.dir/tests/unit/test_crypto.c.s +.PHONY : tests/unit/test_crypto.c.s + +tests/unit/test_encoding.o: tests/unit/test_encoding.c.o +.PHONY : tests/unit/test_encoding.o + +# target to build an object file +tests/unit/test_encoding.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.o +.PHONY : tests/unit/test_encoding.c.o + +tests/unit/test_encoding.i: tests/unit/test_encoding.c.i +.PHONY : tests/unit/test_encoding.i + +# target to preprocess a source file +tests/unit/test_encoding.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.i +.PHONY : tests/unit/test_encoding.c.i + +tests/unit/test_encoding.s: tests/unit/test_encoding.c.s +.PHONY : tests/unit/test_encoding.s + +# target to generate assembly for a file +tests/unit/test_encoding.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_encoding.dir/build.make CMakeFiles/test_encoding.dir/tests/unit/test_encoding.c.s +.PHONY : tests/unit/test_encoding.c.s + +tests/unit/test_packet.o: tests/unit/test_packet.c.o +.PHONY : tests/unit/test_packet.o + +# target to build an object file +tests/unit/test_packet.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/tests/unit/test_packet.c.o +.PHONY : tests/unit/test_packet.c.o + +tests/unit/test_packet.i: tests/unit/test_packet.c.i +.PHONY : tests/unit/test_packet.i + +# target to preprocess a source file +tests/unit/test_packet.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/tests/unit/test_packet.c.i +.PHONY : tests/unit/test_packet.c.i + +tests/unit/test_packet.s: tests/unit/test_packet.c.s +.PHONY : tests/unit/test_packet.s + +# target to generate assembly for a file +tests/unit/test_packet.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test_packet.dir/build.make CMakeFiles/test_packet.dir/tests/unit/test_packet.c.s +.PHONY : tests/unit/test_packet.c.s + +tools/rstr-player.o: tools/rstr-player.c.o +.PHONY : tools/rstr-player.o + +# target to build an object file +tools/rstr-player.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/tools/rstr-player.c.o +.PHONY : tools/rstr-player.c.o + +tools/rstr-player.i: tools/rstr-player.c.i +.PHONY : tools/rstr-player.i + +# target to preprocess a source file +tools/rstr-player.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/tools/rstr-player.c.i +.PHONY : tools/rstr-player.c.i + +tools/rstr-player.s: tools/rstr-player.c.s +.PHONY : tools/rstr-player.s + +# target to generate assembly for a file +tools/rstr-player.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/rstr-player.dir/build.make CMakeFiles/rstr-player.dir/tools/rstr-player.c.s +.PHONY : tools/rstr-player.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... rebuild_cache" + @echo "... test" + @echo "... rootstream" + @echo "... rstr-player" + @echo "... test_crypto" + @echo "... test_encoding" + @echo "... test_packet" + @echo "... src/audio_capture.o" + @echo "... src/audio_capture.i" + @echo "... src/audio_capture.s" + @echo "... src/audio_playback.o" + @echo "... src/audio_playback.i" + @echo "... src/audio_playback.s" + @echo "... src/config.o" + @echo "... src/config.i" + @echo "... src/config.s" + @echo "... src/core.o" + @echo "... src/core.i" + @echo "... src/core.s" + @echo "... src/crypto.o" + @echo "... src/crypto.i" + @echo "... src/crypto.s" + @echo "... src/discovery.o" + @echo "... src/discovery.i" + @echo "... src/discovery.s" + @echo "... src/display_sdl2.o" + @echo "... src/display_sdl2.i" + @echo "... src/display_sdl2.s" + @echo "... src/drm_capture.o" + @echo "... src/drm_capture.i" + @echo "... src/drm_capture.s" + @echo "... src/dummy_capture.o" + @echo "... src/dummy_capture.i" + @echo "... src/dummy_capture.s" + @echo "... src/input.o" + @echo "... src/input.i" + @echo "... src/input.s" + @echo "... src/latency.o" + @echo "... src/latency.i" + @echo "... src/latency.s" + @echo "... src/main.o" + @echo "... src/main.i" + @echo "... src/main.s" + @echo "... src/network.o" + @echo "... src/network.i" + @echo "... src/network.s" + @echo "... src/nvenc_encoder.o" + @echo "... src/nvenc_encoder.i" + @echo "... src/nvenc_encoder.s" + @echo "... src/opus_codec.o" + @echo "... src/opus_codec.i" + @echo "... src/opus_codec.s" + @echo "... src/packet_validate.o" + @echo "... src/packet_validate.i" + @echo "... src/packet_validate.s" + @echo "... src/platform/platform_linux.o" + @echo "... src/platform/platform_linux.i" + @echo "... src/platform/platform_linux.s" + @echo "... src/qrcode.o" + @echo "... src/qrcode.i" + @echo "... src/qrcode.s" + @echo "... src/recording.o" + @echo "... src/recording.i" + @echo "... src/recording.s" + @echo "... src/service.o" + @echo "... src/service.i" + @echo "... src/service.s" + @echo "... src/tray.o" + @echo "... src/tray.i" + @echo "... src/tray.s" + @echo "... src/vaapi_decoder.o" + @echo "... src/vaapi_decoder.i" + @echo "... src/vaapi_decoder.s" + @echo "... src/vaapi_encoder.o" + @echo "... src/vaapi_encoder.i" + @echo "... src/vaapi_encoder.s" + @echo "... src/x11_capture.o" + @echo "... src/x11_capture.i" + @echo "... src/x11_capture.s" + @echo "... tests/unit/test_crypto.o" + @echo "... tests/unit/test_crypto.i" + @echo "... tests/unit/test_crypto.s" + @echo "... tests/unit/test_encoding.o" + @echo "... tests/unit/test_encoding.i" + @echo "... tests/unit/test_encoding.s" + @echo "... tests/unit/test_packet.o" + @echo "... tests/unit/test_packet.i" + @echo "... tests/unit/test_packet.s" + @echo "... tools/rstr-player.o" + @echo "... tools/rstr-player.i" + @echo "... tools/rstr-player.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/_codeql_build_dir/cmake_install.cmake b/_codeql_build_dir/cmake_install.cmake new file mode 100644 index 0000000..efd385e --- /dev/null +++ b/_codeql_build_dir/cmake_install.cmake @@ -0,0 +1,106 @@ +# Install script for directory: /home/runner/work/RootStream/RootStream + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rootstream" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rootstream") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rootstream" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/runner/work/RootStream/RootStream/_codeql_build_dir/rootstream") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rootstream" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rootstream") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rootstream") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rstr-player" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rstr-player") + file(RPATH_CHECK + FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rstr-player" + RPATH "") + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/runner/work/RootStream/RootStream/_codeql_build_dir/rstr-player") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rstr-player" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rstr-player") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/rstr-player") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications" TYPE FILE FILES "/home/runner/work/RootStream/RootStream/assets/rootstream.desktop") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/256x256/apps" TYPE FILE FILES "/home/runner/work/RootStream/RootStream/assets/rootstream.png") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/runner/work/RootStream/RootStream/_codeql_build_dir/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/runner/work/RootStream/RootStream/_codeql_build_dir/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/_codeql_build_dir/rstr-player b/_codeql_build_dir/rstr-player new file mode 100755 index 0000000..6e7d633 Binary files /dev/null and b/_codeql_build_dir/rstr-player differ diff --git a/_codeql_build_dir/test_crypto b/_codeql_build_dir/test_crypto new file mode 100755 index 0000000..6d1195c Binary files /dev/null and b/_codeql_build_dir/test_crypto differ diff --git a/_codeql_build_dir/test_encoding b/_codeql_build_dir/test_encoding new file mode 100755 index 0000000..dd5cc99 Binary files /dev/null and b/_codeql_build_dir/test_encoding differ diff --git a/_codeql_build_dir/test_packet b/_codeql_build_dir/test_packet new file mode 100755 index 0000000..5e060a4 Binary files /dev/null and b/_codeql_build_dir/test_packet differ diff --git a/_codeql_detected_source_root b/_codeql_detected_source_root new file mode 120000 index 0000000..945c9b4 --- /dev/null +++ b/_codeql_detected_source_root @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/include/rootstream.h b/include/rootstream.h index 440dd01..687e50c 100644 --- a/include/rootstream.h +++ b/include/rootstream.h @@ -65,7 +65,7 @@ #define ROOTSTREAM_CODE_MAX_LEN 128 /* ============================================================================ - * CAPTURE - DRM/KMS framebuffer capture + * CAPTURE - Multi-backend framebuffer capture * ============================================================================ */ typedef enum { @@ -73,6 +73,18 @@ typedef enum { CAPTURE_MMAP, /* Memory mapped framebuffer fallback */ } capture_mode_t; +/* Forward declarations */ +typedef struct rootstream_ctx rootstream_ctx_t; +typedef struct frame_buffer frame_buffer_t; + +/* Capture backend interface */ +typedef struct capture_backend { + const char *name; + int (*init_fn)(rootstream_ctx_t *ctx); + int (*capture_fn)(rootstream_ctx_t *ctx, frame_buffer_t *frame); + void (*cleanup_fn)(rootstream_ctx_t *ctx); +} capture_backend_t; + typedef struct { int fd; /* DRM device file descriptor */ uint32_t connector_id; /* DRM connector ID */ @@ -84,7 +96,7 @@ typedef struct { char name[64]; /* Display name (e.g., "HDMI-A-1") */ } display_info_t; -typedef struct { +typedef struct frame_buffer { uint8_t *data; /* Frame pixel data (RGBA) */ uint32_t size; /* Total size in bytes */ uint32_t capacity; /* Allocated buffer size in bytes */ @@ -360,7 +372,7 @@ typedef struct { * MAIN CONTEXT - Application state * ============================================================================ */ -typedef struct { +typedef struct rootstream_ctx { /* Identity */ keypair_t keypair; /* This device's keys */ @@ -369,6 +381,7 @@ typedef struct { /* Capture & Encoding */ capture_mode_t capture_mode; + const capture_backend_t *capture_backend; /* Currently active backend */ display_info_t display; frame_buffer_t current_frame; encoder_ctx_t encoder; @@ -449,6 +462,22 @@ int rootstream_capture_init(rootstream_ctx_t *ctx); int rootstream_capture_frame(rootstream_ctx_t *ctx, frame_buffer_t *frame); void rootstream_capture_cleanup(rootstream_ctx_t *ctx); +/* --- Capture Backend Implementations --- */ +/* DRM/KMS backend */ +int rootstream_capture_init_drm(rootstream_ctx_t *ctx); +int rootstream_capture_frame_drm(rootstream_ctx_t *ctx, frame_buffer_t *frame); +void rootstream_capture_cleanup_drm(rootstream_ctx_t *ctx); + +/* X11 SHM backend */ +int rootstream_capture_init_x11(rootstream_ctx_t *ctx); +int rootstream_capture_frame_x11(rootstream_ctx_t *ctx, frame_buffer_t *frame); +void rootstream_capture_cleanup_x11(rootstream_ctx_t *ctx); + +/* Dummy test pattern backend */ +int rootstream_capture_init_dummy(rootstream_ctx_t *ctx); +int rootstream_capture_frame_dummy(rootstream_ctx_t *ctx, frame_buffer_t *frame); +void rootstream_capture_cleanup_dummy(rootstream_ctx_t *ctx); + /* --- Encoding (existing, polished) --- */ int rootstream_encoder_init(rootstream_ctx_t *ctx, encoder_type_t type, codec_type_t codec); int rootstream_encode_frame(rootstream_ctx_t *ctx, frame_buffer_t *in, diff --git a/src/audio_playback.c b/src/audio_playback.c index 50d575f..6057c61 100644 --- a/src/audio_playback.c +++ b/src/audio_playback.c @@ -27,7 +27,7 @@ typedef struct { int sample_rate; int channels; bool initialized; -} audio_playback_ctx_t; +} alsa_internal_ctx_t; /* * Initialize ALSA audio playback @@ -42,7 +42,7 @@ int audio_playback_init(rootstream_ctx_t *ctx) { } /* Allocate playback context */ - audio_playback_ctx_t *playback = calloc(1, sizeof(audio_playback_ctx_t)); + alsa_internal_ctx_t *playback = calloc(1, sizeof(alsa_internal_ctx_t)); if (!playback) { fprintf(stderr, "ERROR: Cannot allocate audio playback context\n"); return -1; @@ -180,7 +180,7 @@ int audio_playback_write(rootstream_ctx_t *ctx, int16_t *samples, return -1; } - audio_playback_ctx_t *playback = (audio_playback_ctx_t*)ctx->tray.menu; + alsa_internal_ctx_t *playback = (alsa_internal_ctx_t*)ctx->tray.menu; if (!playback || !playback->initialized) { return -1; } @@ -229,7 +229,7 @@ void audio_playback_cleanup(rootstream_ctx_t *ctx) { return; } - audio_playback_ctx_t *playback = (audio_playback_ctx_t*)ctx->tray.menu; + alsa_internal_ctx_t *playback = (alsa_internal_ctx_t*)ctx->tray.menu; if (playback->handle) { snd_pcm_drain(playback->handle); diff --git a/src/crypto.c b/src/crypto.c index 08a4314..fbb9652 100644 --- a/src/crypto.c +++ b/src/crypto.c @@ -235,9 +235,13 @@ int crypto_load_keypair(keypair_t *kp, const char *config_dir) { /* Load identity (hostname) */ f = fopen(identity_path, "r"); if (f) { - fgets(kp->identity, sizeof(kp->identity), f); - /* Remove newline */ - kp->identity[strcspn(kp->identity, "\n")] = 0; + if (!fgets(kp->identity, sizeof(kp->identity), f)) { + fprintf(stderr, "WARNING: Failed to read identity, using hostname\n"); + rs_gethostname(kp->identity, sizeof(kp->identity)); + } else { + /* Remove newline */ + kp->identity[strcspn(kp->identity, "\n")] = 0; + } fclose(f); } else { /* Fallback to system hostname */ diff --git a/src/drm_capture.c b/src/drm_capture.c index c7d49e9..275ae69 100644 --- a/src/drm_capture.c +++ b/src/drm_capture.c @@ -196,9 +196,9 @@ int rootstream_select_display(rootstream_ctx_t *ctx, int display_index) { } /* - * Initialize capture for a specific display + * Initialize DRM/KMS capture for a specific display */ -int rootstream_capture_init(rootstream_ctx_t *ctx) { +int rootstream_capture_init_drm(rootstream_ctx_t *ctx) { if (!ctx || ctx->display.fd < 0) { set_error("Invalid context or display not selected"); return -1; @@ -250,10 +250,10 @@ int rootstream_capture_init(rootstream_ctx_t *ctx) { } /* - * Capture a frame directly from GPU framebuffer + * Capture a frame directly from GPU framebuffer (DRM backend) * This is the magic - no compositor involved! */ -int rootstream_capture_frame(rootstream_ctx_t *ctx, frame_buffer_t *frame) { +int rootstream_capture_frame_drm(rootstream_ctx_t *ctx, frame_buffer_t *frame) { if (!ctx || !frame) { set_error("Invalid arguments"); return -1; @@ -303,7 +303,7 @@ int rootstream_capture_frame(rootstream_ctx_t *ctx, frame_buffer_t *frame) { return 0; } -void rootstream_capture_cleanup(rootstream_ctx_t *ctx) { +void rootstream_capture_cleanup_drm(rootstream_ctx_t *ctx) { if (!ctx) return; @@ -317,3 +317,25 @@ void rootstream_capture_cleanup(rootstream_ctx_t *ctx) { ctx->display.fd = -1; } } + +/* Legacy wrapper functions for backward compatibility */ +int rootstream_capture_init(rootstream_ctx_t *ctx) { + return rootstream_capture_init_drm(ctx); +} + +int rootstream_capture_frame(rootstream_ctx_t *ctx, frame_buffer_t *frame) { + /* Use backend if set, otherwise fall back to DRM */ + if (ctx && ctx->capture_backend && ctx->capture_backend->capture_fn) { + return ctx->capture_backend->capture_fn(ctx, frame); + } + return rootstream_capture_frame_drm(ctx, frame); +} + +void rootstream_capture_cleanup(rootstream_ctx_t *ctx) { + /* Use backend if set, otherwise fall back to DRM */ + if (ctx && ctx->capture_backend && ctx->capture_backend->cleanup_fn) { + ctx->capture_backend->cleanup_fn(ctx); + return; + } + rootstream_capture_cleanup_drm(ctx); +} diff --git a/src/dummy_capture.c b/src/dummy_capture.c new file mode 100644 index 0000000..446509a --- /dev/null +++ b/src/dummy_capture.c @@ -0,0 +1,174 @@ +/* + * dummy_capture.c - Test pattern generator + * + * Generates test images for development/testing: + * - Allows pipeline validation without real display hardware + * - Perfect for CI/headless systems + * - Generates animated patterns for testing + */ + +#include "../include/rootstream.h" +#include +#include +#include +#include +#include +#include + +static uint64_t frame_counter = 0; +static char last_error[256] = {0}; + +const char* rootstream_get_error_dummy(void) { + return last_error; +} + +static void set_error(const char *fmt, ...) { + va_list args; + va_start(args, fmt); + vsnprintf(last_error, sizeof(last_error), fmt, args); + va_end(args); +} + +/* + * Initialize dummy capture with configurable resolution + */ +int rootstream_capture_init_dummy(rootstream_ctx_t *ctx) { + if (!ctx) { + set_error("Invalid context"); + return -1; + } + + /* Use existing display dimensions if set, otherwise default to 1920x1080 */ + if (ctx->display.width == 0 || ctx->display.height == 0) { + ctx->display.width = 1920; + ctx->display.height = 1080; + } + + ctx->display.refresh_rate = 60; + snprintf(ctx->display.name, sizeof(ctx->display.name), "Dummy-TestPattern"); + ctx->display.fd = -1; + + /* Allocate frame buffer */ + size_t frame_size = ctx->display.width * ctx->display.height * 4; /* RGBA */ + ctx->current_frame.data = malloc(frame_size); + if (!ctx->current_frame.data) { + set_error("Cannot allocate frame buffer"); + return -1; + } + + ctx->current_frame.width = ctx->display.width; + ctx->current_frame.height = ctx->display.height; + ctx->current_frame.size = frame_size; + ctx->current_frame.capacity = frame_size; + ctx->current_frame.format = 0x34325258; /* DRM_FORMAT_XRGB8888 */ + + frame_counter = 0; + + printf("āœ“ Dummy test pattern initialized: %dx%d @ %d Hz\n", + ctx->display.width, ctx->display.height, ctx->display.refresh_rate); + + return 0; +} + +/* + * Generate test pattern frame + * Creates an animated gradient with moving elements + */ +int rootstream_capture_frame_dummy(rootstream_ctx_t *ctx, frame_buffer_t *frame) { + if (!ctx || !frame) { + set_error("Invalid arguments"); + return -1; + } + + uint32_t width = ctx->display.width; + uint32_t height = ctx->display.height; + uint8_t *data = frame->data; + + /* Animate based on frame counter */ + double time = frame_counter / 60.0; + int offset_x = (int)(sin(time) * 100.0); + int offset_y = (int)(cos(time * 0.7) * 100.0); + + /* Generate test pattern */ + for (uint32_t y = 0; y < height; y++) { + for (uint32_t x = 0; x < width; x++) { + uint32_t idx = (y * width + x) * 4; + + /* Create gradient with moving pattern */ + int px = (int)x + offset_x; + int py = (int)y + offset_y; + + /* Color bars pattern */ + if (y < height / 4) { + /* Top quarter: horizontal color bars */ + int bar = (x * 8) / width; + switch (bar) { + case 0: data[idx] = 255; data[idx+1] = 255; data[idx+2] = 255; break; /* White */ + case 1: data[idx] = 255; data[idx+1] = 255; data[idx+2] = 0; break; /* Yellow */ + case 2: data[idx] = 0; data[idx+1] = 255; data[idx+2] = 255; break; /* Cyan */ + case 3: data[idx] = 0; data[idx+1] = 255; data[idx+2] = 0; break; /* Green */ + case 4: data[idx] = 255; data[idx+1] = 0; data[idx+2] = 255; break; /* Magenta */ + case 5: data[idx] = 255; data[idx+1] = 0; data[idx+2] = 0; break; /* Red */ + case 6: data[idx] = 0; data[idx+1] = 0; data[idx+2] = 255; break; /* Blue */ + case 7: data[idx] = 0; data[idx+1] = 0; data[idx+2] = 0; break; /* Black */ + default: data[idx] = 128; data[idx+1] = 128; data[idx+2] = 128; break; + } + } else if (y < height / 2) { + /* Second quarter: animated gradient */ + uint8_t r = (uint8_t)((px % 256 + frame_counter) % 256); + uint8_t g = (uint8_t)((py % 256 + frame_counter / 2) % 256); + uint8_t b = (uint8_t)(((px + py) % 256 + frame_counter / 3) % 256); + data[idx] = r; + data[idx+1] = g; + data[idx+2] = b; + } else if (y < (3 * height) / 4) { + /* Third quarter: checkerboard */ + int check_size = 32; + int cx = (px / check_size) % 2; + int cy = (py / check_size) % 2; + uint8_t color = (cx ^ cy) ? 255 : 64; + data[idx] = color; + data[idx+1] = color; + data[idx+2] = color; + } else { + /* Bottom quarter: solid color with frame counter */ + uint8_t intensity = (uint8_t)((frame_counter % 256)); + data[idx] = intensity; + data[idx+1] = 128; + data[idx+2] = 255 - intensity; + } + + data[idx+3] = 255; /* Alpha */ + } + } + + /* Set frame metadata */ + frame->width = width; + frame->height = height; + frame->pitch = width * 4; + frame->format = ctx->current_frame.format; + + /* Get timestamp */ + struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); + frame->timestamp = ts.tv_sec * 1000000ULL + ts.tv_nsec / 1000; + + frame_counter++; + ctx->frames_captured++; + return 0; +} + +/* + * Cleanup dummy capture + */ +void rootstream_capture_cleanup_dummy(rootstream_ctx_t *ctx) { + if (!ctx) + return; + + if (ctx->current_frame.data) { + free(ctx->current_frame.data); + ctx->current_frame.data = NULL; + } + + frame_counter = 0; +} diff --git a/src/main.c b/src/main.c index 5c98a2c..679f56f 100644 --- a/src/main.c +++ b/src/main.c @@ -146,43 +146,55 @@ static int run_host_mode(rootstream_ctx_t *ctx, int display_idx, bool no_discove printf("\n"); ctx->is_host = true; - /* Detect and select display */ + /* Detect and select display (DRM-based) */ display_info_t displays[MAX_DISPLAYS]; int num_displays = rootstream_detect_displays(displays, MAX_DISPLAYS); if (num_displays < 0) { - fprintf(stderr, "ERROR: %s\n", rootstream_get_error()); - return -1; + printf("WARNING: DRM display detection failed: %s\n", rootstream_get_error()); + printf("INFO: Will attempt fallback capture backends in service_run_host()\n"); + num_displays = 0; /* Continue with fallback backends */ } - printf("INFO: Found %d display(s)\n", num_displays); - for (int i = 0; i < num_displays; i++) { - printf(" [%d] %s - %dx%d @ %d Hz\n", i, - displays[i].name, displays[i].width, - displays[i].height, displays[i].refresh_rate); - } + if (num_displays > 0) { + printf("INFO: Found %d DRM display(s)\n", num_displays); + for (int i = 0; i < num_displays; i++) { + printf(" [%d] %s - %dx%d @ %d Hz\n", i, + displays[i].name, displays[i].width, + displays[i].height, displays[i].refresh_rate); + } - if (display_idx < 0 || display_idx >= num_displays) { - fprintf(stderr, "ERROR: Display index %d out of range (0-%d)\n", - display_idx, num_displays - 1); + if (display_idx < 0 || display_idx >= num_displays) { + fprintf(stderr, "ERROR: Display index %d out of range (0-%d)\n", + display_idx, num_displays - 1); + for (int i = 0; i < num_displays; i++) { + if (displays[i].fd >= 0) { + close(displays[i].fd); + } + } + return -1; + } + + ctx->display = displays[display_idx]; for (int i = 0; i < num_displays; i++) { - if (displays[i].fd >= 0) { + if (i != display_idx && displays[i].fd >= 0) { close(displays[i].fd); } } - return -1; - } - ctx->display = displays[display_idx]; - for (int i = 0; i < num_displays; i++) { - if (i != display_idx && displays[i].fd >= 0) { - close(displays[i].fd); + if (ctx->display.refresh_rate == 0) { + ctx->display.refresh_rate = 60; + printf("WARNING: Display refresh rate unknown, defaulting to 60 Hz\n"); } - } - - if (ctx->display.refresh_rate == 0) { + } else { + /* No DRM displays detected - fallback backends will be used */ + printf("INFO: No DRM displays available, will use fallback capture backend\n"); + /* Initialize display info to defaults for fallback backends */ + ctx->display.fd = -1; + ctx->display.width = 0; /* Let backend set this */ + ctx->display.height = 0; ctx->display.refresh_rate = 60; - printf("WARNING: Display refresh rate unknown, defaulting to 60 Hz\n"); + snprintf(ctx->display.name, sizeof(ctx->display.name), "Fallback"); } printf("\nāœ“ Selected: %s (%dx%d @ %d Hz)\n\n", @@ -190,41 +202,14 @@ static int run_host_mode(rootstream_ctx_t *ctx, int display_idx, bool no_discove ctx->display.height, ctx->display.refresh_rate); printf("INFO: Target video bitrate: %u kbps\n", ctx->encoder.bitrate / 1000); - /* Initialize components */ - if (rootstream_capture_init(ctx) < 0) { - fprintf(stderr, "ERROR: Capture init failed\n"); - return -1; - } - - /* Use H.264 by default (host mode doesn't use settings file) */ - { - extern bool rootstream_encoder_nvenc_available(void); - if (rootstream_encoder_nvenc_available()) { - printf("INFO: NVENC detected, trying NVIDIA encoder...\n"); - if (rootstream_encoder_init(ctx, ENCODER_NVENC, CODEC_H264) == 0) { - printf("āœ“ Using NVENC encoder\n"); - } else { - printf("WARNING: NVENC init failed, falling back to VA-API\n"); - if (rootstream_encoder_init(ctx, ENCODER_VAAPI, CODEC_H264) < 0) { - fprintf(stderr, "ERROR: Encoder init failed\n"); - return -1; - } - } - } else if (rootstream_encoder_init(ctx, ENCODER_VAAPI, CODEC_H264) < 0) { - fprintf(stderr, "ERROR: Encoder init failed\n"); - return -1; - } - } + /* Capture and encoder initialization will be handled by service_run_host() with fallback logic */ if (rootstream_net_init(ctx, ctx->port) < 0) { fprintf(stderr, "ERROR: Network init failed\n"); return -1; } - if (rootstream_input_init(ctx) < 0) { - fprintf(stderr, "ERROR: Input init failed\n"); - return -1; - } + /* Input initialization will be handled by service_run_host() */ /* Initialize discovery */ if (no_discovery) { diff --git a/src/network.c b/src/network.c index 8cb4153..7bf30df 100644 --- a/src/network.c +++ b/src/network.c @@ -1079,9 +1079,12 @@ static int resolve_hostname(const char *hostname, uint16_t port, goto try_dns; #else printf("INFO: mDNS not available, trying DNS for %s\n", hostname); + goto try_dns; #endif } + /* DNS resolution fallback */ + (void)0; /* Ensure label is reachable */ try_dns: /* Standard DNS resolution using getaddrinfo */ printf("INFO: Resolving %s via DNS...\n", hostname); diff --git a/src/service.c b/src/service.c index 0b29807..addbbea 100644 --- a/src/service.c +++ b/src/service.c @@ -150,10 +150,44 @@ int service_run_host(rootstream_ctx_t *ctx) { ctx->latency.report_interval_ms, ctx->latency.capacity); } - /* Initialize components */ - if (rootstream_capture_init(ctx) < 0) { - fprintf(stderr, "ERROR: Capture init failed\n"); - fprintf(stderr, "DETAILS: %s\n", rootstream_get_error()); + /* Initialize capture with fallback chain (static to persist beyond function scope) */ + static const capture_backend_t backends[] = { + { + .name = "DRM/KMS", + .init_fn = rootstream_capture_init_drm, + .capture_fn = rootstream_capture_frame_drm, + .cleanup_fn = rootstream_capture_cleanup_drm, + }, + { + .name = "X11 SHM", + .init_fn = rootstream_capture_init_x11, + .capture_fn = rootstream_capture_frame_x11, + .cleanup_fn = rootstream_capture_cleanup_x11, + }, + { + .name = "Dummy Pattern", + .init_fn = rootstream_capture_init_dummy, + .capture_fn = rootstream_capture_frame_dummy, + .cleanup_fn = rootstream_capture_cleanup_dummy, + }, + {NULL, NULL, NULL, NULL} /* Sentinel */ + }; + + int backend_idx = 0; + while (backends[backend_idx].name) { + printf("INFO: Attempting capture backend: %s\n", backends[backend_idx].name); + if (backends[backend_idx].init_fn(ctx) == 0) { + printf("āœ“ Capture backend '%s' initialized successfully\n", backends[backend_idx].name); + ctx->capture_backend = &backends[backend_idx]; + break; + } else { + printf("WARNING: Capture backend '%s' failed, trying next...\n", backends[backend_idx].name); + backend_idx++; + } + } + + if (!ctx->capture_backend) { + fprintf(stderr, "ERROR: All capture backends failed!\n"); return -1; } @@ -184,8 +218,7 @@ int service_run_host(rootstream_ctx_t *ctx) { } if (rootstream_input_init(ctx) < 0) { - fprintf(stderr, "ERROR: Input init failed\n"); - return -1; + fprintf(stderr, "WARNING: Input init failed (continuing without input)\n"); } /* Initialize audio capture and Opus encoder */ @@ -227,7 +260,7 @@ int service_run_host(rootstream_ctx_t *ctx) { uint64_t loop_start_us = get_timestamp_us(); /* Capture frame */ - if (rootstream_capture_frame(ctx, &ctx->current_frame) < 0) { + if (ctx->capture_backend->capture_fn(ctx, &ctx->current_frame) < 0) { fprintf(stderr, "ERROR: Capture failed (display=%s)\n", ctx->display.name); fprintf(stderr, "DETAILS: %s\n", rootstream_get_error()); usleep(16000); diff --git a/src/x11_capture.c b/src/x11_capture.c new file mode 100644 index 0000000..8d78a63 --- /dev/null +++ b/src/x11_capture.c @@ -0,0 +1,190 @@ +/* + * x11_capture.c - X11 SHM screen grab fallback + * + * Fallback capture backend when DRM is unavailable: + * - Works on X11 systems without DRM access + * - Uses XGetImage or XShm for screen capture + * - Slower than DRM but more compatible + */ + +#include "../include/rootstream.h" +#include +#include +#include +#include +#include + +#ifdef HAVE_X11 +#include +#include + +typedef struct { + Display *display; + Window root; + int screen; +} x11_capture_ctx_t; + +static x11_capture_ctx_t x11_ctx = {0}; +static char last_error[256] = {0}; + +const char* rootstream_get_error_x11(void) { + return last_error; +} + +static void set_error(const char *fmt, ...) { + va_list args; + va_start(args, fmt); + vsnprintf(last_error, sizeof(last_error), fmt, args); + va_end(args); +} + +/* + * Initialize X11 capture + */ +int rootstream_capture_init_x11(rootstream_ctx_t *ctx) { + if (!ctx) { + set_error("Invalid context"); + return -1; + } + + /* Open X display */ + x11_ctx.display = XOpenDisplay(NULL); + if (!x11_ctx.display) { + set_error("Cannot open X display (DISPLAY not set or X11 not available)"); + return -1; + } + + x11_ctx.screen = DefaultScreen(x11_ctx.display); + x11_ctx.root = RootWindow(x11_ctx.display, x11_ctx.screen); + + /* Get screen dimensions */ + XWindowAttributes attrs; + if (XGetWindowAttributes(x11_ctx.display, x11_ctx.root, &attrs) == 0) { + set_error("Cannot get root window attributes"); + XCloseDisplay(x11_ctx.display); + x11_ctx.display = NULL; + return -1; + } + + /* Initialize display info */ + ctx->display.width = attrs.width; + ctx->display.height = attrs.height; + ctx->display.refresh_rate = 60; /* Assume 60Hz */ + snprintf(ctx->display.name, sizeof(ctx->display.name), "X11-Screen-%d", x11_ctx.screen); + ctx->display.fd = -1; /* No file descriptor for X11 */ + + /* Allocate frame buffer */ + size_t frame_size = ctx->display.width * ctx->display.height * 4; /* RGBA */ + ctx->current_frame.data = malloc(frame_size); + if (!ctx->current_frame.data) { + set_error("Cannot allocate frame buffer"); + XCloseDisplay(x11_ctx.display); + x11_ctx.display = NULL; + return -1; + } + + ctx->current_frame.width = ctx->display.width; + ctx->current_frame.height = ctx->display.height; + ctx->current_frame.size = frame_size; + ctx->current_frame.capacity = frame_size; + ctx->current_frame.format = 0x34325258; /* DRM_FORMAT_XRGB8888 */ + + printf("āœ“ X11 SHM capture initialized: %dx%d\n", + ctx->display.width, ctx->display.height); + + return 0; +} + +/* + * Capture frame using X11 XGetImage + */ +int rootstream_capture_frame_x11(rootstream_ctx_t *ctx, frame_buffer_t *frame) { + if (!ctx || !frame || !x11_ctx.display) { + set_error("Invalid arguments or X11 not initialized"); + return -1; + } + + /* Capture screen using XGetImage */ + XImage *image = XGetImage(x11_ctx.display, x11_ctx.root, + 0, 0, + ctx->display.width, ctx->display.height, + AllPlanes, ZPixmap); + if (!image) { + set_error("XGetImage failed"); + return -1; + } + + /* Convert to RGBA format */ + uint8_t *dst = frame->data; + + for (unsigned int y = 0; y < ctx->display.height; y++) { + for (unsigned int x = 0; x < ctx->display.width; x++) { + unsigned long pixel = XGetPixel(image, x, y); + + /* Extract RGB components (assuming 24-bit or 32-bit color) */ + dst[0] = (pixel >> 16) & 0xFF; /* R */ + dst[1] = (pixel >> 8) & 0xFF; /* G */ + dst[2] = pixel & 0xFF; /* B */ + dst[3] = 0xFF; /* A */ + + dst += 4; + } + } + + XDestroyImage(image); + + /* Set frame metadata */ + frame->width = ctx->display.width; + frame->height = ctx->display.height; + frame->pitch = ctx->display.width * 4; + frame->format = ctx->current_frame.format; + + /* Get timestamp */ + struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); + frame->timestamp = ts.tv_sec * 1000000ULL + ts.tv_nsec / 1000; + + ctx->frames_captured++; + return 0; +} + +/* + * Cleanup X11 capture + */ +void rootstream_capture_cleanup_x11(rootstream_ctx_t *ctx) { + if (!ctx) + return; + + if (ctx->current_frame.data) { + free(ctx->current_frame.data); + ctx->current_frame.data = NULL; + } + + if (x11_ctx.display) { + XCloseDisplay(x11_ctx.display); + x11_ctx.display = NULL; + } +} + +#else /* !HAVE_X11 */ + +/* Stub implementation when X11 is not available */ + +static char last_error[256] = "X11 support not compiled in"; + +int rootstream_capture_init_x11(rootstream_ctx_t *ctx) { + (void)ctx; + return -1; +} + +int rootstream_capture_frame_x11(rootstream_ctx_t *ctx, frame_buffer_t *frame) { + (void)ctx; + (void)frame; + return -1; +} + +void rootstream_capture_cleanup_x11(rootstream_ctx_t *ctx) { + (void)ctx; +} + +#endif /* HAVE_X11 */