From owner-freebsd-chromium@FreeBSD.ORG Wed Nov 5 12:47:45 2014 Return-Path: Delivered-To: freebsd-chromium@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF8992A8 for ; Wed, 5 Nov 2014 12:47:45 +0000 (UTC) Received: from olejniczak.info (olejniczak.info [85.17.214.250]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91E792F1 for ; Wed, 5 Nov 2014 12:47:45 +0000 (UTC) Received: by olejniczak.info (Postfix, from userid 65534) id 81D9E15AE89; Wed, 5 Nov 2014 12:47:34 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on olejniczak.info X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=ham version=3.3.2 Received: from webmail.olejniczak.info (olejniczak.info [85.17.214.250]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by olejniczak.info (Postfix) with ESMTPSA id A0BD315AE41 for ; Wed, 5 Nov 2014 12:47:31 +0100 (CET) Mime-Version: 1.0 Date: Wed, 05 Nov 2014 11:47:31 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-ID: X-Mailer: RainLoop/1.6.10.185 From: "Tomek" Subject: Re: Still segfault at start To: freebsd-chromium@freebsd.org In-Reply-To: <5458E00E.6010008@freebsd.org> References: <5458E00E.6010008@freebsd.org> <5458898A.3030306@freebsd.org> <54562C5D.5050603@freebsd.org> <20141102100531.GA5218@lena.kiev> <0242ddfdf4f8ab796793d3f186e60d39@webmail.olejniczak.info> <36593714051f36274387c822a86dc293@webmail.olejniczak.info> X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Nov 2014 12:47:45 -0000 Hi,=0A=0A4 listopada 2014 15:18 - "Ren=C3=A9 Ladan" :: = =0A=0A> Hm, maybe a 32 vs 64 bit issue. I'll try conditionally zeroing ou= t the=0A> result value in libexecinfo as you described, but I only have 3= 2-bits=0A> VMs to test with (my physical CPU misses required VT-x) and al= l hosts=0A> run 10.0.=0A=0AThe problem is that ffmpeg needs -fomit-frame-= pointer in 32 bit. The below patch should fix it - for unknown reason gyp= cflags_c! or cflags_cc! doesn't remove -fno-omit-frame-pointer so I've a= dded -fomit-frame-pointer at the and of CFLAGS.=0A=0APlease check if it w= orks for You.=0A=0A--- third_party/ffmpeg/ffmpeg.gyp.orig 2014-11-05 13:3= 4:06.000000000 +0100=0A+++ third_party/ffmpeg/ffmpeg.gyp 2014-11-05 13:35= :24.000000000 +0100=0A@@ -213,6 +213,12 @@=0A 'cflags!': [= =0A '-fno-omit-frame-pointer',=0A ],=0A+ = 'cflags_c': [=0A+ '-fomit-frame-pointer',=0A+ = ],=0A+ 'cflags_cc': [=0A+ '-fomit= -frame-pointer',=0A+ ],=0A 'debug_extra_cflags= !': [=0A '-fno-omit-frame-pointer',=0A ], = =0A=0A=0A--=0ABest Wishes=0ATomek