From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Gesthuizen Subject: bug#32458: Acknowledgement (SDL SEGFAULTs on foreign distro) Date: Tue, 16 Oct 2018 20:20:28 +0200 Message-ID: <62a70709-9cb7-ca94-20e8-5c4287fbdd30@yahoo.de> 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> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="I7Hk4DhoEmBE9z1OlvUCWW8szqRqozgnN" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42694) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCTxs-0007ze-Pp for bug-guix@gnu.org; Tue, 16 Oct 2018 14:21:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCTxn-00064f-Lw for bug-guix@gnu.org; Tue, 16 Oct 2018 14:21:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49663) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gCTxl-00061h-VL for bug-guix@gnu.org; Tue, 16 Oct 2018 14:21:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gCTxl-0006bY-Pg for bug-guix@gnu.org; Tue, 16 Oct 2018 14:21:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87tvlngg65.fsf@fastmail.com> 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: Marius Bakke , 32458@debbugs.gnu.org This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --I7Hk4DhoEmBE9z1OlvUCWW8szqRqozgnN Content-Type: multipart/mixed; boundary="CmtuL3VoYYRmXB9ItvbW9GNxyI7OT2LQA"; protected-headers="v1" From: Tim Gesthuizen To: Marius Bakke , 32458@debbugs.gnu.org Message-ID: <62a70709-9cb7-ca94-20e8-5c4287fbdd30@yahoo.de> Subject: Re: bug#32458: Acknowledgement (SDL SEGFAULTs on foreign distro) 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> In-Reply-To: <87tvlngg65.fsf@fastmail.com> --CmtuL3VoYYRmXB9ItvbW9GNxyI7OT2LQA Content-Type: multipart/mixed; boundary="------------A2B1E96380F6EBAEA8C31C1B" Content-Language: en-US This is a multi-part message in MIME format. --------------A2B1E96380F6EBAEA8C31C1B Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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. 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. Tim. --------------A2B1E96380F6EBAEA8C31C1B Content-Type: application/x-shellscript; name="check.sh" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="check.sh" IyEvYmluL2Jhc2gKCmd1aXggZW52aXJvbm1lbnQgZ3VpeCAtLSBtYWtlIC1qMTAgY2xlYW4t Z28gYWxsIHx8IGV4aXQgMTI1Ci4vcHJlLWluc3QtZW52IGd1aXggZW52aXJvbm1lbnQgLW0g JEhPTUUvc3JjL2d1aXgvYnVpbGQvZml4ZWQtdGVld29ybGRzLnNjbSAtLSBiYXNoIC1jICJc JEdVSVhfRU5WSVJPTkVNRU5UL2Jpbi90ZWV3b3JsZHMiIHx8IGV4aXQgMQo= --------------A2B1E96380F6EBAEA8C31C1B Content-Type: text/x-scheme; name="fixed-teeworlds.scm" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="fixed-teeworlds.scm" (use-modules (gnu packages) (gnu packages games) (gnu packages gl) (guix packages) (guix profiles)) (define libepoxy-legacy (package (inherit libepoxy) (version "1.4.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)) --------------A2B1E96380F6EBAEA8C31C1B-- --CmtuL3VoYYRmXB9ItvbW9GNxyI7OT2LQA-- --I7Hk4DhoEmBE9z1OlvUCWW8szqRqozgnN Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKUiC5+8BRKEri5fa0uWPaa77GdUFAlvGK+wACgkQ0uWPaa77 GdXHJQf/UKOvS4farsFdlp4NJSEYEZB5Dz3PAykW4+KY6qI+2EMakHqy6sr/hllf krA5HIOAeyP0fzI2dZVixPDazzWDblmATBe8kaIHyhMigNyEycNJZHzij5UFggWj 6vlpXHu4pDWwyVUJT731RhmdsMMXMk1SnHM/bsuUqnCkSl45TFKYx9/EuAoSRpKF QZ1BfjjRxnLxhbWazYArEBps/YRMCJguuI1JFaMLkAqjZ8MjqqwlFKDRIYBc9BT8 MDSgYO6q+0pZcsEq4b2tyhKJG3XM811eVLE2ACgf7lwoFNMO9qerbuTlMI133IVs BYiMB8JwjXLQ7IKNst3jq5IkPp0wfQ== =i190 -----END PGP SIGNATURE----- --I7Hk4DhoEmBE9z1OlvUCWW8szqRqozgnN--