From owner-freebsd-gecko@freebsd.org Fri May 12 17:27:13 2017 Return-Path: Delivered-To: freebsd-gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61855D69DBE for ; Fri, 12 May 2017 17:27:13 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 53034877 for ; Fri, 12 May 2017 17:27:13 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 52693D69DBC; Fri, 12 May 2017 17:27:13 +0000 (UTC) Delivered-To: gecko@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5211CD69DBB for ; Fri, 12 May 2017 17:27:13 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 35F87876; Fri, 12 May 2017 17:27:13 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 47E967D8C; Fri, 12 May 2017 17:27:12 +0000 (UTC) From: Jan Beich To: Geordie Cc: gecko@FreeBSD.org Subject: Re: core dumped References: <20170512130351.671a37db@geordieslaptop.home.network> Date: Fri, 12 May 2017 19:27:02 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 May 2017 17:27:13 -0000 Geordie writes: > uname -a > FreeBSD geordieslaptop.home.network 11.0-STABLE FreeBSD 11.0-STABLE #2 > r317644: Mon May 1 11:43:03 EDT 2017 > > firefox-53.0.2,1 > > Actually I was running 53.0_2,1 yesterday and when rebooted the > machine firefox was kind enough to give me a core dump and this message > > May 12 12:53:14 geordieslaptop kernel: pid 4202 (firefox), uid 1001: > exited on signal 11 (core dumped) > I upgraded to firefox-53.0.2,1 and gave me the same error > > Let me know if you want the core dump It is 11.1MiB core(5) dumps may contain passwords, sessions, cookies, etc. and have to exactly match the program they came from. Maybe extract useful bits yourself e.g., $ lldb $(which firefox) --core /path/to/firefox.core (lldb) bt or $ pkg install gdb $ /usr/local/bin/gdb firefox /path/to/firefox.core (gdb) bt It may give you an idea where to look e.g., which dependency to rebuild. For debugging you'd have to bisect build environment until it matches poudriere similar to how freebsd.org packages are built.