[2021-09-13T03:22:06Z] Hi [2021-09-13T14:27:10Z] gdb to the rescue... segfault in qemu is because of "0x000074b2925598e9 in xkb_compose_state_feed () from /usr/lib/libxkbcommon.so.0" [2021-09-13T14:27:12Z] hmhmhm [2021-09-13T14:29:37Z] kekw imagine believing that a non-exiting error message when launching qemu would indicate the cause of the segfault... that was fun [2021-09-13T14:30:09Z] non-exiting error message ? [2021-09-13T14:30:39Z] it would give an error but launch fine otherwise [2021-09-13T14:30:51Z] which gave me the impression that it should be a warning instead of an error [2021-09-13T16:43:44Z] Is there any way I can get libGL.so.1 on wayland? I've gotten GLFW patched properly so that MultiMC will start launching, but it crashes saying that libGL isn't found [2021-09-13T16:44:05Z] should I be trying to mess with compiling mesa or libglvnd (I don't even know which to look at) or has someone solved this problem already [2021-09-13T16:52:43Z] Glvnd [2021-09-13T16:52:49Z] but it will pull in some x libs [2021-09-13T16:52:58Z] Mesa with libglvnd support [2021-09-13T16:54:18Z] hmm ok [2021-09-13T16:54:47Z] so I should make my own mesa forked package with libglvnd support enabled, then just rely on the X libs from the kiss-xorg repo, then? [2021-09-13T16:57:36Z] Yeah [2021-09-13T16:57:55Z] Btw since you're on gkiss there is libglvnd with xlibs in nvidia/ repo, so you can use that aswell and just fork mesa [2021-09-13T16:58:04Z] Since that mesa has nothing enabled [2021-09-13T16:58:18Z] ic [2021-09-13T16:58:26Z] thanks for pointing me in the right direction :) [2021-09-13T17:05:27Z] yeah wayland doesn't use libGL, it uses libGLES/libEGL; GL is related to glx which is for X11 [2021-09-13T17:05:34Z] the whole graphics stack is sort of a mess across the board [2021-09-13T17:07:40Z] gotcha