You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just to let you know, trying to install Opam 2.2.1 release on OpenBSD 7.6 (using bash -c "sh <(curl -fsSL https://opam.ocaml.org/install.sh)" which fetches opam-2.2.1-x86_64-openbsd) leads to:
tar -tzf base73.tgz |grep libc++
./usr/lib/libc++.so.9.0
./usr/lib/libc++abi.so.6.0
tar -tzf base74.tgz |grep libc++
./usr/lib/libc++.so.9.0
./usr/lib/libc++abi.so.6.0
tar -tzf base75.tgz |grep libc++
./usr/lib/libc++.so.10.0
./usr/lib/libc++abi.so.7.0
So I guess I was just 'lucky' to keep libc++.so.9.0 during the previous upgrades but on an upgraded 7.5->7.6 system which still has 'libc++.so.9.0' available, it's not anymore sufficient:
#6237 fixed this (only >= 2.3.0~beta1), however the release binary now is only available for OpenBSD 7.6. I'll open a new ticket to remind myself to experiment with statically linked binaries on OpenBSD to see if it could be a solution for 7.5 as OpenBSD supports its last two releases (7.5 and 7.6).
Just to let you know, trying to install Opam 2.2.1 release on OpenBSD 7.6 (using
bash -c "sh <(curl -fsSL https://opam.ocaml.org/install.sh)"
which fetches opam-2.2.1-x86_64-openbsd) leads to:OpenBSD moved to libc++.so.10.0 in 7.5:
So I guess I was just 'lucky' to keep libc++.so.9.0 during the previous upgrades but on an upgraded 7.5->7.6 system which still has 'libc++.so.9.0' available, it's not anymore sufficient:
I managed to workaround this by :
pkg_add opam
which installs opam 2.2.0 (and is built against libc++.so.10.0)Not so much a big deal but at least you're aware of this 'issue'.
The text was updated successfully, but these errors were encountered: