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
When running the latest version in Debian 11.6, I get the following error:
/home/eliminmax/.local/share/gh/extensions/gh-dash/gh-dash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by /home/eliminmax/.local/share/gh/extensions/gh-dash/gh-dash)
/home/eliminmax/.local/share/gh/extensions/gh-dash/gh-dash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by /home/eliminmax/.local/share/gh/extensions/gh-dash/gh-dash)
The reason is that the compiled binary depends of functionality added in newer versions of glibc - specifically versions 2.32 and 2.34.
As a quick aside: Building from source does not work on my system, with the following error:
../../.go/pkg/mod/github.com/mattn/[email protected]/runewidth.go:7:2: found packages uniseg (doc.go) and main (gen_breaktest.go) in /home/eliminmax/.go/pkg/mod/github.com/rivo/[email protected]
make: *** [Makefile:4: build] Error 1
That seems to be an issue with a dependency and/or my go setup, not this repo, but because of it, I can't determine whether or not it works if built from source. As an extra note about this, I have the golang-1.19 backport package installed, and added /usr/lib/go-1.19/bin to the beginning of my PATH.
Edit: Using /usr/lib/golang-1.18/bin/go from the golang-1.18 backport package works fine.
Steps to reproduce
Install in Debian Bullseye 11.6 with gh extension install dlvhdr/gh-dash, and run gh dash
Expected behavior
It launches properly
Desktop:
OS: Debian GNU/Linux 11 (bullseye)
The text was updated successfully, but these errors were encountered:
@eliminmax@bduffany till the issue is fixed you can compile the app on your local machine and move it to the extensions folder to make it work
an example of doing that if you are confused on how to do that
(go should be installed) clone the repo to local machine and run go build && mv gh-dash ~/.local/share/gh/extensions/gh-dash/
Describe the bug
When running the latest version in Debian 11.6, I get the following error:
The reason is that the compiled binary depends of functionality added in newer versions of glibc - specifically versions 2.32 and 2.34.
As a quick aside: Building from source does not work on my system, with the following error:That seems to be an issue with a dependency and/or my go setup, not this repo, but because of it, I can't determine whether or not it works if built from source. As an extra note about this, I have thegolang-1.19
backport package installed, and added/usr/lib/go-1.19/bin
to the beginning of my PATH.Edit: Using
/usr/lib/golang-1.18/bin/go
from thegolang-1.18
backport package works fine.Steps to reproduce
gh extension install dlvhdr/gh-dash
, and rungh dash
Expected behavior
It launches properly
Desktop:
The text was updated successfully, but these errors were encountered: