We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Ubuntu 20.04, I did
sudo apt-get install cargo libxcb1-dev cargo install kmon
but that resulted in:
= note: /usr/bin/ld: cannot find -lxcb-render /usr/bin/ld: cannot find -lxcb-shape /usr/bin/ld: cannot find -lxcb-xfixes collect2: error: ld returned 1 exit status
After
sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
things went OK: a fresh binary /home/sander/.cargo/bin/kmon
/home/sander/.cargo/bin/kmon
So those libraries are needed too, and are not installed by installing libxcb1-dev ? If so, shall I sent a PR for the README.md?
The text was updated successfully, but these errors were encountered:
Yeah, looks like they are not installed with libxcb1-dev You can create a PR about this issue and give information here. That would be good.
libxcb1-dev
Sorry, something went wrong.
doc: Update the manual installation section about #2
d1e755d
Almost same on Debian testing here: needed to install libxcb-shape0-dev and libxcb-xfixes0-dev besides libxcb1-dev for kmon to compile with cargo
orhun
No branches or pull requests
On Ubuntu 20.04, I did
but that resulted in:
After
things went OK: a fresh binary
/home/sander/.cargo/bin/kmon
So those libraries are needed too, and are not installed by installing libxcb1-dev ? If so, shall I sent a PR for the README.md?
The text was updated successfully, but these errors were encountered: