From owner-freebsd-emulation@FreeBSD.ORG Sat Dec 27 01:00:53 2014 Return-Path: Delivered-To: freebsd-emulation@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 801CBD8B for ; Sat, 27 Dec 2014 01:00:53 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 669A067D91 for ; Sat, 27 Dec 2014 01:00:53 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBR10rnp057029 for ; Sat, 27 Dec 2014 01:00:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-emulation@FreeBSD.org Subject: [Bug 195939] emulators/pipelight youtube (h.264) flash crush Date: Sat, 27 Dec 2014 01:00:53 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: henry.hu.sh@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: kmoore@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Dec 2014 01:00:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195939 --- Comment #2 from Henry Hu --- I have a similar problem: pipelight-flash works for simple flash sites and audios, but crashes for video sites. In dmesg, you see "pid xxxx (wine), uid xxx: exited on signal 10" This method fixes the issue for me, you may have a try: Set CFLAGS=-O0 -mstackrealign in make.conf, and rebuild 32 bit libthr.so. You may do it in this way: cd /usr/src make build32 echo "CFLAGS+=-mstackrealign -O0" >> /etc/make.conf make build32 make install32 (or just install libthr.so manually The core file points me to a movsd instruction in libthr.so. I'm not sure if movsd has alignment requirements, but -mstackrealign does not fix it. With -O0, movsd is not generated, and youtube works.... -- You are receiving this mail because: You are on the CC list for the bug.