Closed Soreo closed 3 years ago
The guy who maintained the Linux binaries stopped making them. I don't use Linux.
Keeping this open in case somebody wants to help out
@Soreo if you happen to own Quake on Steam, then you can use https://github.com/dreamer/luxtorpeda to install vkQuake.
We just packaged vkQuake 1.02.1 (64-bit only), installing it through Luxtorpeda has some QoL perks:
Unfortunately, bug https://github.com/Novum/vkQuake/issues/161 is present - I mitigated it by changing default gamma - use brightness slider in settings if the game is too dark for you. (@Novum, please consider reopening this bug so we can continue investigation into root cause)
@Novum don't close this issue yet, please. Would you accept PRs adding Travis (or other CI) to provide automatic Linux builds?
@dreamer Yes. I would.
I have binaries for linux if anyone wants them
I'm not a package maintainer but if anyone needs up to date binaries drop me an email at jojonerdygamer@gmail.com and I will gladly send you a copy.
I could try help if it still needs done.
It itsn't that hard to build if you have git and make.
In Ubuntu 20.04, you just install 4 dependencies, go to the Quake folder in your vkQuake download through the terminal, and type make. It will compile well.
I believe I am missing something with the libraries or linking when trying to compile and debug on arch as it is unable to load the libraries Not sure how to fix as I have less experience with gdb. my current setup is this file to streamline the build:
#!/bin/bash
cd Quake
make clean
make -j24 DEBUG=true -lX11 -lusb
if [ -f ../Build/vkquake ]; then
rm ../Build/vkquake
fi
if [ -f ./vkquake ]; then
mv './vkquake' '../Build/'
fi
the error i am getting
DEBUG: Failed loading XMissingExtension: /usr/lib/libX11.so.6: undefined symbol: _XMissingExtension
DEBUG: Failed loading XextAddDisplay: /usr/lib/libX11.so.6: undefined symbol: _XextAddDisplay
DEBUG: Failed loading XextCreateExtension: /usr/lib/libX11.so.6: undefined symbol: _XextCreateExtension
DEBUG: Failed loading XextDestroyExtension: /usr/lib/libX11.so.6: undefined symbol: _XextDestroyExtension
DEBUG: Failed loading XextFindDisplay: /usr/lib/libX11.so.6: undefined symbol: _XextFindDisplay
DEBUG: Failed loading XextRemoveDisplay: /usr/lib/libX11.so.6: undefined symbol: _XextRemoveDisplay
DEBUG: Failed loading XShmAttach: /usr/lib/libX11.so.6: undefined symbol: _XShmAttach
DEBUG: Failed loading XShmDetach: /usr/lib/libX11.so.6: undefined symbol: _XShmDetach
DEBUG: Failed loading XShmPutImage: /usr/lib/libX11.so.6: undefined symbol: _XShmPutImage
DEBUG: Failed loading XShmCreateImage: /usr/lib/libX11.so.6: undefined symbol: _XShmCreateImage
DEBUG: Failed loading XShmCreatePixmap: /usr/lib/libX11.so.6: undefined symbol: _XShmCreatePixmap
DEBUG: Failed loading XShmQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XShmQueryExtension
DEBUG: Failed loading XcursorImageCreate: /usr/lib/libX11.so.6: undefined symbol: _XcursorImageCreate
DEBUG: Failed loading XcursorImageCreate: /usr/lib/libXext.so.6: undefined symbol: _XcursorImageCreate
DEBUG: Failed loading XcursorImageDestroy: /usr/lib/libX11.so.6: undefined symbol: _XcursorImageDestroy
DEBUG: Failed loading XcursorImageDestroy: /usr/lib/libXext.so.6: undefined symbol: _XcursorImageDestroy
DEBUG: Failed loading XcursorImageLoadCursor: /usr/lib/libX11.so.6: undefined symbol: _XcursorImageLoadCursor
DEBUG: Failed loading XcursorImageLoadCursor: /usr/lib/libXext.so.6: undefined symbol: _XcursorImageLoadCursor
DEBUG: Failed loading XineramaIsActive: /usr/lib/libX11.so.6: undefined symbol: _XineramaIsActive
DEBUG: Failed loading XineramaIsActive: /usr/lib/libXext.so.6: undefined symbol: _XineramaIsActive
DEBUG: Failed loading XineramaIsActive: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaIsActive
DEBUG: Failed loading XineramaQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XineramaQueryExtension
DEBUG: Failed loading XineramaQueryExtension: /usr/lib/libXext.so.6: undefined symbol: _XineramaQueryExtension
DEBUG: Failed loading XineramaQueryExtension: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaQueryExtension
DEBUG: Failed loading XineramaQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XineramaQueryVersion
DEBUG: Failed loading XineramaQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XineramaQueryVersion
DEBUG: Failed loading XineramaQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaQueryVersion
DEBUG: Failed loading XineramaQueryScreens: /usr/lib/libX11.so.6: undefined symbol: _XineramaQueryScreens
DEBUG: Failed loading XineramaQueryScreens: /usr/lib/libXext.so.6: undefined symbol: _XineramaQueryScreens
DEBUG: Failed loading XineramaQueryScreens: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaQueryScreens
DEBUG: Failed loading XIQueryDevice: /usr/lib/libX11.so.6: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIQueryDevice: /usr/lib/libXext.so.6: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIQueryDevice: /usr/lib/libXcursor.so.1: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIQueryDevice: /usr/lib/libXinerama.so.1: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libX11.so.6: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libXext.so.6: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XISelectEvents: /usr/lib/libX11.so.6: undefined symbol: _XISelectEvents
DEBUG: Failed loading XISelectEvents: /usr/lib/libXext.so.6: undefined symbol: _XISelectEvents
DEBUG: Failed loading XISelectEvents: /usr/lib/libXcursor.so.1: undefined symbol: _XISelectEvents
DEBUG: Failed loading XISelectEvents: /usr/lib/libXinerama.so.1: undefined symbol: _XISelectEvents
DEBUG: Failed loading XIQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libX11.so.6: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libXext.so.6: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libXcursor.so.1: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libXinerama.so.1: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXi.so.6: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigRates: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libX11.so.6: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXext.so.6: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXcursor.so.1: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXinerama.so.1: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXi.so.6: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libX11.so.6: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXext.so.6: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXcursor.so.1: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXinerama.so.1: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXi.so.6: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libX11.so.6: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXext.so.6: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXcursor.so.1: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXinerama.so.1: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXi.so.6: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libX11.so.6: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXext.so.6: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXcursor.so.1: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXinerama.so.1: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXi.so.6: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libX11.so.6: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXext.so.6: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXcursor.so.1: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXinerama.so.1: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXi.so.6: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libX11.so.6: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXext.so.6: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXi.so.6: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libX11.so.6: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXext.so.6: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXi.so.6: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXext.so.6: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXcursor.so.1: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXinerama.so.1: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXi.so.6: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXrandr.so.2: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXi.so.6: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXrandr.so.2: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libX11.so.6: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXext.so.6: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXcursor.so.1: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXinerama.so.1: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXi.so.6: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXrandr.so.2: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XShapeCombineMask: /usr/lib/libX11.so.6: undefined symbol: _XShapeCombineMask
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XMissingExtension: /usr/lib/libX11.so.6: undefined symbol: _XMissingExtension
DEBUG: Failed loading XextAddDisplay: /usr/lib/libX11.so.6: undefined symbol: _XextAddDisplay
DEBUG: Failed loading XextCreateExtension: /usr/lib/libX11.so.6: undefined symbol: _XextCreateExtension
DEBUG: Failed loading XextDestroyExtension: /usr/lib/libX11.so.6: undefined symbol: _XextDestroyExtension
DEBUG: Failed loading XextFindDisplay: /usr/lib/libX11.so.6: undefined symbol: _XextFindDisplay
DEBUG: Failed loading XextRemoveDisplay: /usr/lib/libX11.so.6: undefined symbol: _XextRemoveDisplay
DEBUG: Failed loading XShmAttach: /usr/lib/libX11.so.6: undefined symbol: _XShmAttach
DEBUG: Failed loading XShmDetach: /usr/lib/libX11.so.6: undefined symbol: _XShmDetach
DEBUG: Failed loading XShmPutImage: /usr/lib/libX11.so.6: undefined symbol: _XShmPutImage
DEBUG: Failed loading XShmCreateImage: /usr/lib/libX11.so.6: undefined symbol: _XShmCreateImage
DEBUG: Failed loading XShmCreatePixmap: /usr/lib/libX11.so.6: undefined symbol: _XShmCreatePixmap
DEBUG: Failed loading XShmQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XShmQueryExtension
DEBUG: Failed loading XcursorImageCreate: /usr/lib/libX11.so.6: undefined symbol: _XcursorImageCreate
DEBUG: Failed loading XcursorImageCreate: /usr/lib/libXext.so.6: undefined symbol: _XcursorImageCreate
DEBUG: Failed loading XcursorImageDestroy: /usr/lib/libX11.so.6: undefined symbol: _XcursorImageDestroy
DEBUG: Failed loading XcursorImageDestroy: /usr/lib/libXext.so.6: undefined symbol: _XcursorImageDestroy
DEBUG: Failed loading XcursorImageLoadCursor: /usr/lib/libX11.so.6: undefined symbol: _XcursorImageLoadCursor
DEBUG: Failed loading XcursorImageLoadCursor: /usr/lib/libXext.so.6: undefined symbol: _XcursorImageLoadCursor
DEBUG: Failed loading XineramaIsActive: /usr/lib/libX11.so.6: undefined symbol: _XineramaIsActive
DEBUG: Failed loading XineramaIsActive: /usr/lib/libXext.so.6: undefined symbol: _XineramaIsActive
DEBUG: Failed loading XineramaIsActive: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaIsActive
DEBUG: Failed loading XineramaQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XineramaQueryExtension
DEBUG: Failed loading XineramaQueryExtension: /usr/lib/libXext.so.6: undefined symbol: _XineramaQueryExtension
DEBUG: Failed loading XineramaQueryExtension: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaQueryExtension
DEBUG: Failed loading XineramaQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XineramaQueryVersion
DEBUG: Failed loading XineramaQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XineramaQueryVersion
DEBUG: Failed loading XineramaQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaQueryVersion
DEBUG: Failed loading XineramaQueryScreens: /usr/lib/libX11.so.6: undefined symbol: _XineramaQueryScreens
DEBUG: Failed loading XineramaQueryScreens: /usr/lib/libXext.so.6: undefined symbol: _XineramaQueryScreens
DEBUG: Failed loading XineramaQueryScreens: /usr/lib/libXcursor.so.1: undefined symbol: _XineramaQueryScreens
DEBUG: Failed loading XIQueryDevice: /usr/lib/libX11.so.6: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIQueryDevice: /usr/lib/libXext.so.6: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIQueryDevice: /usr/lib/libXcursor.so.1: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIQueryDevice: /usr/lib/libXinerama.so.1: undefined symbol: _XIQueryDevice
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libX11.so.6: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libXext.so.6: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XIFreeDeviceInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XIFreeDeviceInfo
DEBUG: Failed loading XISelectEvents: /usr/lib/libX11.so.6: undefined symbol: _XISelectEvents
DEBUG: Failed loading XISelectEvents: /usr/lib/libXext.so.6: undefined symbol: _XISelectEvents
DEBUG: Failed loading XISelectEvents: /usr/lib/libXcursor.so.1: undefined symbol: _XISelectEvents
DEBUG: Failed loading XISelectEvents: /usr/lib/libXinerama.so.1: undefined symbol: _XISelectEvents
DEBUG: Failed loading XIQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XIQueryVersion
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libX11.so.6: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libXext.so.6: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libXcursor.so.1: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XIGetSelectedEvents: /usr/lib/libXinerama.so.1: undefined symbol: _XIGetSelectedEvents
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRQueryVersion: /usr/lib/libXi.so.6: undefined symbol: _XRRQueryVersion
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRGetScreenInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenInfo
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentConfiguration: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigCurrentConfiguration
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigCurrentRate: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigCurrentRate
DEBUG: Failed loading XRRConfigRates: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigRates: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigRates
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libX11.so.6: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXext.so.6: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXcursor.so.1: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXinerama.so.1: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRConfigSizes: /usr/lib/libXi.so.6: undefined symbol: _XRRConfigSizes
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libX11.so.6: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXext.so.6: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXcursor.so.1: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXinerama.so.1: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRSetScreenConfigAndRate: /usr/lib/libXi.so.6: undefined symbol: _XRRSetScreenConfigAndRate
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRFreeScreenConfigInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeScreenConfigInfo
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libX11.so.6: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXext.so.6: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXcursor.so.1: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXinerama.so.1: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRSetScreenSize: /usr/lib/libXi.so.6: undefined symbol: _XRRSetScreenSize
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenSizeRange: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenSizeRange
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResources: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenResources
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libX11.so.6: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXext.so.6: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRGetScreenResourcesCurrent: /usr/lib/libXi.so.6: undefined symbol: _XRRGetScreenResourcesCurrent
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRFreeScreenResources: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeScreenResources
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRGetOutputInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRGetOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRFreeOutputInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeOutputInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRGetCrtcInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRGetCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libX11.so.6: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXext.so.6: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXcursor.so.1: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXinerama.so.1: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRFreeCrtcInfo: /usr/lib/libXi.so.6: undefined symbol: _XRRFreeCrtcInfo
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libX11.so.6: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXext.so.6: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXcursor.so.1: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXinerama.so.1: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRSetCrtcConfig: /usr/lib/libXi.so.6: undefined symbol: _XRRSetCrtcConfig
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libX11.so.6: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXext.so.6: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXcursor.so.1: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXinerama.so.1: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRListOutputProperties: /usr/lib/libXi.so.6: undefined symbol: _XRRListOutputProperties
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libX11.so.6: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXext.so.6: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXcursor.so.1: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXinerama.so.1: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRQueryOutputProperty: /usr/lib/libXi.so.6: undefined symbol: _XRRQueryOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libX11.so.6: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXext.so.6: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputProperty: /usr/lib/libXi.so.6: undefined symbol: _XRRGetOutputProperty
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libX11.so.6: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXext.so.6: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXcursor.so.1: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXinerama.so.1: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XRRGetOutputPrimary: /usr/lib/libXi.so.6: undefined symbol: _XRRGetOutputPrimary
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXext.so.6: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXcursor.so.1: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXinerama.so.1: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXi.so.6: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryExtension: /usr/lib/libXrandr.so.2: undefined symbol: _XScreenSaverQueryExtension
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXi.so.6: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverQueryVersion: /usr/lib/libXrandr.so.2: undefined symbol: _XScreenSaverQueryVersion
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libX11.so.6: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXext.so.6: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXcursor.so.1: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXinerama.so.1: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXi.so.6: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XScreenSaverSuspend: /usr/lib/libXrandr.so.2: undefined symbol: _XScreenSaverSuspend
DEBUG: Failed loading XShapeCombineMask: /usr/lib/libX11.so.6: undefined symbol: _XShapeCombineMask
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetAllModeLines: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeGetAllModeLines
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetModeLine: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeGetModeLine
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeGetViewPort: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeGetViewPort
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryExtension: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeQueryExtension
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeQueryVersion: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeQueryVersion
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeSwitchToMode: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeSwitchToMode
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libX11.so.6: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXext.so.6: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXcursor.so.1: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXinerama.so.1: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXi.so.6: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXrandr.so.2: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Failed loading XF86VidModeLockModeSwitch: /usr/lib/libXss.so.1: undefined symbol: _XF86VidModeLockModeSwitch
DEBUG: Invalid window
DEBUG: Failed loading udev_device_get_action: /usr/lib/libSDL2-2.0.so.0: undefined symbol: _udev_device_get_action
DEBUG: Failed loading libusb_init: ./vkquake: undefined symbol: _libusb_init
DEBUG: Failed loading libusb_exit: ./vkquake: undefined symbol: _libusb_exit
DEBUG: Failed loading libusb_get_device_list: ./vkquake: undefined symbol: _libusb_get_device_list
DEBUG: Failed loading libusb_free_device_list: ./vkquake: undefined symbol: _libusb_free_device_list
DEBUG: Failed loading libusb_get_device_descriptor: ./vkquake: undefined symbol: _libusb_get_device_descriptor
DEBUG: Failed loading libusb_get_active_config_descriptor: ./vkquake: undefined symbol: _libusb_get_active_config_descriptor
DEBUG: Failed loading libusb_get_config_descriptor: ./vkquake: undefined symbol: _libusb_get_config_descriptor
DEBUG: Failed loading libusb_free_config_descriptor: ./vkquake: undefined symbol: _libusb_free_config_descriptor
DEBUG: Failed loading libusb_get_bus_number: ./vkquake: undefined symbol: _libusb_get_bus_number
DEBUG: Failed loading libusb_get_device_address: ./vkquake: undefined symbol: _libusb_get_device_address
DEBUG: Failed loading libusb_open: ./vkquake: undefined symbol: _libusb_open
DEBUG: Failed loading libusb_close: ./vkquake: undefined symbol: _libusb_close
DEBUG: Failed loading libusb_claim_interface: ./vkquake: undefined symbol: _libusb_claim_interface
DEBUG: Failed loading libusb_release_interface: ./vkquake: undefined symbol: _libusb_release_interface
DEBUG: Failed loading libusb_kernel_driver_active: ./vkquake: undefined symbol: _libusb_kernel_driver_active
DEBUG: Failed loading libusb_detach_kernel_driver: ./vkquake: undefined symbol: _libusb_detach_kernel_driver
DEBUG: Failed loading libusb_attach_kernel_driver: ./vkquake: undefined symbol: _libusb_attach_kernel_driver
DEBUG: Failed loading libusb_set_interface_alt_setting: ./vkquake: undefined symbol: _libusb_set_interface_alt_setting
DEBUG: Failed loading libusb_alloc_transfer: ./vkquake: undefined symbol: _libusb_alloc_transfer
DEBUG: Failed loading libusb_submit_transfer: ./vkquake: undefined symbol: _libusb_submit_transfer
DEBUG: Failed loading libusb_cancel_transfer: ./vkquake: undefined symbol: _libusb_cancel_transfer
DEBUG: Failed loading libusb_free_transfer: ./vkquake: undefined symbol: _libusb_free_transfer
DEBUG: Failed loading libusb_control_transfer: ./vkquake: undefined symbol: _libusb_control_transfer
DEBUG: Failed loading libusb_interrupt_transfer: ./vkquake: undefined symbol: _libusb_interrupt_transfer
DEBUG: Failed loading libusb_handle_events: ./vkquake: undefined symbol: _libusb_handle_events
DEBUG: Failed loading libusb_handle_events_completed: ./vkquake: undefined symbol: _libusb_handle_events_completed
DEBUG: Couldn't open /home/dash/dev/vkQuake/Build/gamecontrollerdb.txt
DEBUG: Invalid RWops
Command line: ./vkquake
Found SDL version 2.0.12
Detected 24 CPUs.
Quake 1.09 (c) id Software
GLQuake 1.00 (c) id Software
FitzQuake 0.85 (c) John Fitzgibbons
FitzQuake SDL port (c) SleepwalkR, Baker
QuakeSpasm 0.93.2 (c) Ozkan Sezer, Eric Wasylishen & others
vkQuake 1.04.1 (c) Axel Gneiting & others
Host_Init
Playing registered version.
Console initialized.
UDP Initialized
Server using protocol 666 (FitzQuake)
Exe: 00:06:54 Oct 25 2020
256.0 megabyte heap
Vulkan Initialization
Using VK_KHR_get_surface_capabilities2
Using VK_KHR_get_physical_device_properties2
Vendor: NVIDIA
Device: GeForce GTX 1060 6GB
Using VK_KHR_dedicated_allocation
Using A2B10G10R10 color buffer format
Using X8_D24 depth buffer format
Creating command buffers
Initializing staging
Creating descriptor set layouts
Reallocating dynamic VBs (256 KB)
Reallocating dynamic IBs (1024 KB)
Reallocating dynamic UBs (256 KB)
Initializing samplers
Creating pipeline layouts
Using IMMEDIATE present mode
Creating color buffer
AA disabled
Creating depth buffer
Creating render passes
Creating frame buffers
Creating pipelines
Sound Initialization
SDL audio spec : 44100 Hz, 1024 samples, 2 channels
SDL audio driver: pulseaudio - Gaming Headset [Kraken USB] Analog Stereo, 65536 bytes buffer
Audio: 16 bit, stereo, 44100 Hz
CDAudio disabled at compile time
========= Quake Initialized =========
execing quake.rc
execing default.cfg
execing config.cfg
couldn't exec autoexec.cfg
3 demo(s) in loop
Shutting down SDL sound
-lX11 -lusb
are these really needed
I was more looking around and added it I don't think it is changing anything might be part of the other project I've found it in.
@Ds886 could you try using pkgbuild from aur?
@micwoj92 it is compiling. I will try to compare the building script checked and the build parameters is a bit different. does makepkg create a sandbox environment
edit1: Checking with debug option on it still have the same issue I'll try with the other vkquake aur package and see if there is any difference edit2: tested no difference.
What do you mean by sandbox? I think by "sandbox environment" you mean this https://wiki.archlinux.org/index.php/DeveloperWiki:Building_in_a_clean_chroot ? by default makepkg does not use that
That what I've meant I'll try to see if it is isolated to my env
I also tried using your script from your first comment and it worked for me. Maybe try reinstalling all affected libraries to see if it helps?
@Novum I could help make macOS binaries in my free time if it helped at all. Does the macOS release use Metal?
AppImage build script was added in d7e807a494d21a55039572d99e2721ea58dbcd5b and releases now include a 64 bit Linux binary that should run on all common Linux distributions.
Why did you abandon Linux? vkQuake 1.02.1 Binaries not for Linux? Why?