File tree Expand file tree Collapse file tree
docs/source/dev_guide/advanced_install Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ Clone and build GStreamer:
8686 git clone https://gitlab.freedesktop.org/gstreamer/gstreamer.git
8787
8888 cd ~ /gstreamer
89- git switch -c " 1.24.12 " " tags/1.24.12 "
89+ git switch -c " 1.26.1 " " tags/1.26.1 "
9090 meson setup -Dexamples=disabled -Dtests=disabled -Dvaapi=enabled -Dgst-examples=disabled --buildtype=release --prefix=/opt/intel/dlstreamer/gstreamer --libdir=lib/ --libexecdir=bin/ build/
9191 ninja -C build
9292 sudo env PATH=~ /python3venv/bin:$PATH meson install -C build/
Original file line number Diff line number Diff line change 11#! /bin/bash
22# ==============================================================================
3- # Copyright (C) 2018-2024 Intel Corporation
3+ # Copyright (C) 2018-2025 Intel Corporation
44#
55# SPDX-License-Identifier: MIT
66# ==============================================================================
@@ -28,6 +28,12 @@ make install
2828cd ..
2929rm -rf librdkafka-1.5.0
3030
31+ # remove symbolic links from previous installation
32+ if [[ -L " /usr/local/lib/libpaho-mqtt3c.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3c.so; fi
33+ if [[ -L " /usr/local/lib/libpaho-mqtt3cs.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3cs.so; fi
34+ if [[ -L " /usr/local/lib/libpaho-mqtt3as.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3as.so; fi
35+ if [[ -L " /usr/local/lib/libpaho-mqtt3a.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3a.so; fi
36+
3137curl -sSL https://github.com/eclipse/paho.mqtt.c/archive/v1.3.4.tar.gz | tar -xz
3238cd paho.mqtt.c-1.3.4 || exit
3339make
You can’t perform that action at this time.
0 commit comments