2021.12.10. 12:43 keltezéssel, Alex Peshkoff via Firebird-devel írta:
Try such function please:CorrectLibDir() { ld=${1} case $(uname -m) in i686) LDL=ld-linux.so.2 ;; x86_64) LDL=ld-linux-x86-64.so.2 ;; aarch64) LDL=ld-linux-aarch64.so.2 ;; *) echo $ld return ;; esac dirname $(ldconfig -p | grep $LDL | awk -F '>' '{print $2;}') }
Replaced the old function in install.sh with the new (I have ld-linux-aarch64.so.1 not ld-linux-aarch64.so.2, so modified a little).
Better than before but the libfbclient* installed only in /opt/firebird/lib. Gabor Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel
