From mboxrd@z Thu Jan 1 00:00:00 1970 From: nee Subject: bug#28554: teeworlds not starting Date: Sat, 23 Sep 2017 16:47:52 +0200 Message-ID: <98bd71d7-1b36-8d89-5d0d-f2933decfe95@cock.li> References: <7fe53243-2337-4a93-da2c-b670205fab05@cock.li> <9d638260-912b-8ee6-a44b-d269edbd1a36@mray.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58395) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvlom-0003lv-7k for bug-guix@gnu.org; Sat, 23 Sep 2017 10:54:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvloh-0008Co-BY for bug-guix@gnu.org; Sat, 23 Sep 2017 10:54:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46031) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dvlog-0008Bg-Vk for bug-guix@gnu.org; Sat, 23 Sep 2017 10:54:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dvlog-0005D4-Di for bug-guix@gnu.org; Sat, 23 Sep 2017 10:54:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <9d638260-912b-8ee6-a44b-d269edbd1a36@mray.de> Content-Language: en-GB List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: mray , 28554@debbugs.gnu.org Am 23.09.2017 um 11:33 schrieb mray: > > > On 23.09.2017 01:09, nee wrote: >> Am 22.09.2017 um 15:19 schrieb mray: >>> Running guix on ubuntu 17.04 teeworlds does not start. >>> >>> $ teeworlds >>> [59c505a6][engine]: running on unix-linux-amd64 >>> [59c505a6][engine]: arch is little endian >>> [59c505a6][storage]: couldn't open storage.cfg >>> [59c505a6][storage]: using standard paths >>> [59c505a6][storage]: added path '$USERDIR' ('/home/mray/.teeworlds') >>> [59c505a6][storage]: added path '$DATADIR' >>> ('/gnu/store/f0g50pigyshfz8dz3f9kgsxzz8w6cz1j-teeworlds-0.6.4/share/teeworlds/data') >>> [59c505a6][storage]: added path '$CURRENTDIR' ('/home/mray') >>> [59c505a6][binds]: bound f1 (282) = toggle_local_console >>> [59c505a6][binds]: bound f2 (283) = toggle_remote_console >>> [59c505a6][binds]: bound tab (9) = +scoreboard >>> [59c505a6][binds]: bound u (117) = +show_chat >>> [59c505a6][binds]: bound f10 (291) = screenshot >>> [59c505a6][binds]: bound a (97) = +left >>> [59c505a6][binds]: bound d (100) = +right >>> [59c505a6][binds]: bound space (32) = +jump >>> [59c505a6][binds]: bound mouse1 (323) = +fire >>> [59c505a6][binds]: bound mouse2 (324) = +hook >>> [59c505a6][binds]: bound lshift (304) = +emote >>> [59c505a6][binds]: bound rshift (303) = +spectate >>> [59c505a6][binds]: bound right (275) = spectate_next >>> [59c505a6][binds]: bound left (276) = spectate_previous >>> [59c505a6][binds]: bound 1 (49) = +weapon1 >>> [59c505a6][binds]: bound 2 (50) = +weapon2 >>> [59c505a6][binds]: bound 3 (51) = +weapon3 >>> [59c505a6][binds]: bound 4 (52) = +weapon4 >>> [59c505a6][binds]: bound 5 (53) = +weapon5 >>> [59c505a6][binds]: bound mousewheelup (331) = +prevweapon >>> [59c505a6][binds]: bound mousewheeldown (332) = +nextweapon >>> [59c505a6][binds]: bound t (116) = chat all >>> [59c505a6][binds]: bound y (121) = chat team >>> [59c505a6][binds]: bound f3 (284) = vote yes >>> [59c505a6][binds]: bound f4 (285) = vote no >>> [59c505a6][console]: failed to open 'settings.cfg' >>> [59c505a6][console]: failed to open 'autoexec.cfg' >>> [59c505a6][client]: starting... >>> libGL error: No matching fbConfigs or visuals found >>> libGL error: failed to load driver: swrast >>> X Error of failed request: BadValue (integer parameter out of range for >>> operation) >>> Major opcode of failed request: 154 (GLX) >>> Minor opcode of failed request: 3 (X_GLXCreateContext) >>> Value in failed request: 0x0 >>> Serial number of failed request: 32 >>> Current serial number in output stream: 33 >>> >> >> Hello mray, >> are you by chance using proprietary graphics drivers on Ubuntu? >> My guess is that proprietary drivers have their custom libGL libraries >> and guix links teeworlds to the absolute path of free mesa libGL. >> I once used guix on a system with proprietary nvidia drivers and had an >> error similar to this one, after switching to the free nouveau drivers >> it worked fine. >> > > Thanks for your answer! > > Yes, I do use proprietary drivers. Does that mean guix does not support > them or is the package just built for one set of drivers? (The latter > would still be a bug, right?) > Guix is committed to software freedom and will not put proprietary software into the official repos. It works with free drivers on different cards as far as I see. Proprietary drivers on Ubuntu only install their libGL to /usr/lib/ which guix does not reference, because it only links libraries that are part of the package definition, but this will not happen for proprietary dirvers. You inspect the linked libraries of teeworlds with: ldd $(type -p teeworlds) --- Please also send your replies to 28554@debbugs.gnu.org so they appear on the thread. I keep forgetting it myself though ;-)