Date: Sat, 27 Dec 2014 01:00:53 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-emulation@FreeBSD.org Subject: [Bug 195939] emulators/pipelight youtube (h.264) flash crush Message-ID: <bug-195939-4075-IDdDIG5WTB@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-195939-4075@https.bugs.freebsd.org/bugzilla/> References: <bug-195939-4075@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195939 --- Comment #2 from Henry Hu <henry.hu.sh@gmail.com> --- 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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-195939-4075-IDdDIG5WTB>