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 3b9adfa commit bd3a324Copy full SHA for bd3a324
packages/linux/openocd/build-openocd.sh
@@ -16,6 +16,8 @@ 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*)") ./
+if [[ $(uname -m) == 'aarch64' ]]; then
20
+ cp $(ldd openocd | egrep -o "(/.*/libgpiod\.so\.\S*)") ./
21
+fi
22
cp $(ldd openocd | egrep -o "(/.*/libjim\.so\.\S*)") ./
23
patchelf --set-rpath . openocd
0 commit comments