[Mesa-dev] [Bug 86701] [regression] weston-simple-egl not running anymore inside qemu

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86701 --- Comment #5 from Pekka Paalanen --- (In reply to nerdopolis1 from comment #4) > I don't know if the --use-gl option for Weston's fbdev backend > is meant to work withou libhybris? No, I don't think that will ever work on a FOSS driver stack.

[Mesa-dev] [Bug 86837] kodi segfault since auxiliary/vl: rework the build of the VL code

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86837 Lee Donaghy changed: What|Removed |Added CC||lee295...@gmail.com -- You are receiving

[Mesa-dev] [PATCH] egl: Fix non-dri SCons builds re #87657

2014-12-24 Thread Alexander von Gluck IV
* Revert change to egl main producing Shared Libraries * Check for dri before including dri code --- src/SConscript |3 ++- src/egl/main/SConscript | 17 +++-- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/src/SConscript b/src/SConscript index eb4cd3c..

[Mesa-dev] [Bug 87658] [llvmpipe] SEGV in sse2_has_daz on ancient Pentium4-M

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87658 David Heidelberg (okias) changed: What|Removed |Added CC||da...@ixit.cz --- Comment #1

[Mesa-dev] [Bug 87658] [llvmpipe] SEGV in sse2_has_daz on ancient Pentium4-M

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87658 --- Comment #2 from David Heidelberg (okias) --- Created attachment 111297 --> https://bugs.freedesktop.org/attachment.cgi?id=111297&action=edit also_try_this_patch.patch this is way how gcc check for DAZ, so maybe it'll work. Please try both

[Mesa-dev] [Bug 87658] [llvmpipe] SEGV in sse2_has_daz on ancient Pentium4-M

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87658 --- Comment #3 from Patrick Baggett --- -#if (defined(PIPE_CC_GCC) || defined(PIPE_CC_SUNPRO)) +#if (defined(PIPE_CC_GCC) && (PIPE_CC_GCC_VERSION >= 408)) + __builtin_ia32_fxsave(&fxarea); +#elif (defined(PIPE_CC_GCC) || defined(PIPE_CC_SUNPRO)

[Mesa-dev] [Bug 87658] [llvmpipe] SEGV in sse2_has_daz on ancient Pentium4-M

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87658 --- Comment #4 from David Heidelberg (okias) --- (In reply to Patrick Baggett from comment #3) > -#if (defined(PIPE_CC_GCC) || defined(PIPE_CC_SUNPRO)) > +#if (defined(PIPE_CC_GCC) && (PIPE_CC_GCC_VERSION >= 408)) > + __builtin_ia32_fxsave(&fxa