Qt installation is missing libxcb
-
@JonB "error while loading shared libraries: libxcb-icccm.so" clearly shows what is missing.
install libxcb-icccm4.
-
-
@mzimmers -dev has include files which you do not need. You need them only when your app uses these libs directly. Therefore, install libxcb-icccm4 is good enough.
run command:
locate libxcb-icccm.soto see if it is installed and where it is located.
-
@JoeCFD said in Qt installation is missing libxcb:
@mzimmers -dev has include files which you do not need. You need them only when your app use these libs directly.
OK, that's what I thought...thanks. Though I will need to build my own Qt libraries from source (this is ultimately for an embedded system), so I guess eventually I will need one of those.
run command:
locate libxcb-icccm.soto see if it is installed and where it is located.
That command returned nothing (which I expected).
I imagine that one of the packages returned in the search above is what I want; I just don't know which one.
-
@JoeCFD handy stuff to know...thanks.
So, after I installed libxcb_icccm4, I got a similar error for _image, then for _keysyms. I can go through these one at a time, but...is there a "superset" package that will save me the work?
-
For anyone who may happen to need this information, here are the xcb libraries I needed for Qt 6.5.2:
- libxcb-icccm4
- libxcb-image
- libxcb-keysyms
- libxcb-render_util
- libxcb-xinerama
- libxcb-xkb
plus: - libxkbcommon-X11
I ran into problems installing these with apt (it couldn't find the first one), but the Synaptic application @JoeCFD mentioned worked fine.
sudo apt install synaptic
Thanks to everyone for the help.
-
-
-
15/15