I run archlinux|arm on a Raspberry Pi 3. I use Chromium to show webpages. After my update today, Chromium does no longer start and shows the error $this->bbcode_second_pass_code('', '/usr/lib/chromium/chromium: error while loading shared libraries: libFLAC.so.8: cannot open shared object file: No such file or directory').
Somehow Chromium wants libFLAC.so.8 and archlinux|arm uses libFLAC.so.12. I could quickly fix it by placing a symlink in $this->bbcode_second_pass_code('', '/usr/lib') with the following command:
$this->bbcode_second_pass_code('', '
cd /usr/lib
ln -s libFLAC.so libFLAC.so.8
')
Chromium now starts. I do not exactly know, which packages is the problem (Chromium or flac). I just wanted to report it here.
It seems that Chromium depends on flac but the current version on archlinux|arm is 101.0.4951.41-1 and needs the .8 version while the flac package itself is on .12
$this->bbcode_second_pass_code('', '
[root@dsserver ~]# pacman -Qi chromium
Name            : chromium
Version         : 101.0.4951.41-1
Description     : A web browser built for speed, simplicity, and security
Architecture    : armv7h
URL             : https://www.chromium.org/Home
Licenses        : BSD
Groups          : None
Provides        : None
Depends On      : gtk3  nss  alsa-lib  xdg-utils  libxss  libcups  libgcrypt  ttf-liberation  systemd  dbus  libpulse  pciutils  libva
                  desktop-file-utils  hicolor-icon-theme  fontconfig  libjpeg  icu  flac  snappy  libxml2  ffmpeg  libwebp  minizip  opus
                  harfbuzz  re2  libxslt  libpng  freetype2
Optional Deps   : pipewire: WebRTC desktop sharing under Wayland
                  kdialog: support for native dialogs in Plasma
                  org.freedesktop.secrets: password storage backend on GNOME / Xfce
                  kwallet: support for storing passwords in KWallet on Plasma
Required By     : None
Optional For    : None
Conflicts With  : None
Replaces        : None
Installed Size  : 162,17 MiB
Packager        : Arch Linux ARM Build System <builder+xu2@archlinuxarm.org>
Build Date      : Mi 27 Apr 2022 01:44:11 CEST
Install Date    : Mo 18 Jul 2022 21:20:43 CEST
Install Reason  : Explicitly installed
Install Script  : No
Validated By    : Signature
[root@dsserver ~]# pacman -Qi flac
Name            : flac
Version         : 1.4.1-1
Description     : Free Lossless Audio Codec
Architecture    : armv7h
URL             : https://xiph.org/flac/
Licenses        : BSD  GPL
Groups          : None
Provides        : libFLAC.so=12-32  libFLAC++.so=10-32
Depends On      : gcc-libs  libogg
Optional Deps   : None
Required By     : chromium  libsndfile
Optional For    : None
Conflicts With  : None
Replaces        : None
Installed Size  : 1023,09 KiB
Packager        : Arch Linux ARM Build System <builder+xu3@archlinuxarm.org>
Build Date      : Fr 23 Sep 2022 02:03:25 CEST
Install Date    : Do 29 Sep 2022 10:56:34 CEST
Install Reason  : Installed as a dependency for another package
Install Script  : No
Validated By    : Signature
')
Regards
Peter
			
		
