We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83cf99b commit e4bd285Copy full SHA for e4bd285
packages/linux/openocd/build-openocd.sh
@@ -13,3 +13,9 @@ make
13
INSTALLDIR="$PWD/../openocd-install/usr/local/bin"
14
rm -rf "$PWD/../openocd-install"
15
DESTDIR="$PWD/../openocd-install" make install
16
+
17
+# Add libraries that may be different versions on the system
18
+cd $INSTALLDIR
19
+cp $(ldd openocd | egrep -o "(/.*/libgpiod\.so\.\S*)") ./
20
+cp $(ldd openocd | egrep -o "(/.*/libjim\.so\.\S*)") ./
21
+patchelf --set-rpath . openocd
0 commit comments