From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: bug#32458: Acknowledgement (SDL SEGFAULTs on foreign distro) Date: Wed, 17 Oct 2018 17:13:21 +0200 Message-ID: <87murchai6.fsf@fastmail.com> References: <4990ca3b-560e-6049-4f54-d597bf8a2dc4@yahoo.de> <87ftz8pxde.fsf@fastmail.com> <87a7npiks2.fsf@fastmail.com> <28717b9b-bf01-cfe2-56d8-6be1cbbb1da8@yahoo.de> <875zyci980.fsf@fastmail.com> <8e38e782-a577-bcbd-0838-0efbc42a5f21@yahoo.de> <87woqjggr6.fsf@fastmail.com> <87tvlngg65.fsf@fastmail.com> <62a70709-9cb7-ca94-20e8-5c4287fbdd30@yahoo.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37449) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCnWR-0003TX-89 for bug-guix@gnu.org; Wed, 17 Oct 2018 11:14:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCnWM-0006Q6-8X for bug-guix@gnu.org; Wed, 17 Oct 2018 11:14:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51229) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gCnWM-0006PQ-1V for bug-guix@gnu.org; Wed, 17 Oct 2018 11:14:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gCnWL-0004Mf-Sy for bug-guix@gnu.org; Wed, 17 Oct 2018 11:14:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <62a70709-9cb7-ca94-20e8-5c4287fbdd30@yahoo.de> 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: Tim Gesthuizen , 32458@debbugs.gnu.org Tim Gesthuizen writes: > Hi, > I tried to bisect again using the input rewriting method. You find the > two scripts for this attached. It turned out that this does not only > take a lot of time for building single versions of guix and the modified > teeworlds package, but it also brings up the bug with the missing > pkg-config package in the package definition of teeworlds. Because of > this I stopped trying to bisect with the input rewritten versions of the > packages and tried reverting as you suggested. OK! Thanks for testing. I wonder if can make that cheaper somehow. > Reverting on top of 0d6f84aab, guix and packages using OpenGL build, but > still segfaults on initialization. I hope you have another good idea, as > bisecting with the above method would probably take a lot of time. Are you saying that you can trigger the bug on top of commit 0d6f84aab? That is interesting, since it does not contain the libepoxy update and should be a good candidate for a "normal" bisect. Can you try to "git bisect bad" and then try these commits: 6449e68d350b8196d39715a2e775337c7c93387e 263c9941a1e523b360ca9f42d1ed6b11e6e6e285 If any of them are good, just follow git bisect instructions. I believe the second should be good, and possibly the first too. [...] > (use-modules (gnu packages) > (gnu packages games) > (gnu packages gl) > (guix packages) > (guix profiles)) > > (define libepoxy-legacy > (package > (inherit libepoxy) > (version "1.4.0"))) This package is missing a (source ...) field. So this only pretends to be 1.4.0, but is actually the same as the inherited one. (Also, should it not be 1.5.0?) > > (define with-libepoxy-legacy > (package-input-rewriting (list (cons libepoxy libepoxy-legacy)))) > > (define teeworlds-fixed > (with-libepoxy-legacy teeworlds)) > > (packages->manifest (list teeworlds-fixed)) Thanks for sharing these scripts!