[Mesa-dev] [PATCH 5/5] r300/compiler: Use precomputed q values in the register allocator

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- .../drivers/r300/compiler/radeon_pair_regalloc.c | 70 +++- 1 files changed, 69 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c b/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c index c53c20

[Mesa-dev] [PATCH 4/5] r300g: Init regalloc state during context creation

2012-09-07 Thread Tom Stellard
From: Tom Stellard Initializing the regalloc state is expensive, and since it is always the same for every compile we only need to initialize it once per context. This should help improve shader compile times for the driver. This reduces the runtime of the glean texCombine test ~25%. --- .../d

[Mesa-dev] [PATCH 3/5] r300/compiler: Don't create register classes for inputs

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- .../drivers/r300/compiler/radeon_pair_regalloc.c | 15 +-- 1 files changed, 1 insertions(+), 14 deletions(-) diff --git a/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c b/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c index 85bb248..12

[Mesa-dev] [PATCH 2/5] ra: Add q_values parameter to ra_set_finalize()

2012-09-07 Thread Tom Stellard
From: Tom Stellard This allows the user to pass precomputed q values to the allocator. --- .../drivers/r300/compiler/radeon_pair_regalloc.c |2 +- src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp |2 +- .../drivers/dri/i965/brw_vec4_reg_allocate.cpp |2 +- src/mesa/program/re

[Mesa-dev] [PATCH 1/5] ra: Clarify usage of ra_set_node_reg()

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- src/mesa/program/register_allocate.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/program/register_allocate.c b/src/mesa/program/register_allocate.c index f08c9d2..07eb154 100644 --- a/src/mesa/program/register_allocate.c +++ b/src/me

[Mesa-dev] [PATCH] mesa: bump version to 9.1 (devel)

2012-09-07 Thread Andreas Boll
Now that branch 9.0 is created, bump the minor version in master. --- Makefile.am |2 +- configs/default |2 +- configure.ac|2 +- src/mesa/main/version.h |4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.

[Mesa-dev] fixes for 8.0

2012-09-07 Thread Andreas Boll
Hi list, Actually I wanted to wait for my fdo account and then push a branch at people.fdo with the candidates for 8.0. But in the meantime I'm sending you an update with some issues to solve. I have cherry-picked almost all of the outstanding candidates to mesa 8.0 The following commits have cau

Re: [Mesa-dev] [PATCH] r600g: order atom emission

2012-09-07 Thread Jerome Glisse
On Thu, Sep 6, 2012 at 11:32 AM, Alex Deucher wrote: > On Thu, Sep 6, 2012 at 10:54 AM, Jerome Glisse wrote: >> On Thu, Sep 6, 2012 at 6:20 AM, Dave Airlie wrote: >>> On Thu, Sep 6, 2012 at 5:21 PM, Philipp Klaus Krause wrote: On 06.09.2012 07:35, j.gli...@gmail.com wrote: > From: Jero

Re: [Mesa-dev] [PATCH 15/19] mesa: Don't set shaderapi dispatch pointers for many things in ES2 or core

2012-09-07 Thread Eric Anholt
Ian Romanick writes: > From: Ian Romanick > > NOTE: This is a candidate for the 9.0 branch GL_ARB_shader_objects and friends are marked as GL not GLL in extensions.c -- should their functions still be exposed if we're exposing the extensions? > /* GL_EXT_gpu_shader4 / GL 3.0 */ > - SET_B

Re: [Mesa-dev] [PATCH 13/19] mesa: Don't set loopback dispatch pointers for most things in ES2 or core

2012-09-07 Thread Eric Anholt
Ian Romanick writes: > From: Ian Romanick > > NOTE: This is a candidate for the 9.0 branch > > Signed-off-by: Ian Romanick > + if (ctx->API != API_OPENGLES2) { > + SET_VertexAttrib1sARB(dest, loopback_VertexAttrib1sARB); > + SET_VertexAttrib1dARB(dest, loopback_VertexAttrib1dARB);

Re: [Mesa-dev] [PATCH 16/19] mesa: Don't set uniform dispatch pointers for many things in ES2 or core

2012-09-07 Thread Eric Anholt
Ian Romanick writes: > From: Ian Romanick > > NOTE: This is a candidate for the 9.0 branch > > Signed-off-by: Ian Romanick I've reviewed up to this point, with reference to the gles3 spec to see if anything got missed there. I noted that a bunch of things seem to ignore GLES1, but maybe you e

Re: [Mesa-dev] Building the xa-vmwgfx target

2012-09-07 Thread Dave Airlie
On Fri, Sep 7, 2012 at 9:49 PM, Thomas Hellström wrote: > On 9/7/12 10:39 PM, Matt Turner wrote: >> >> I'm converting the remaining static Makefile to automake, so xa and >> xa-vmwgfx is on my todo list. >> >> I'm very confused by the build though. It seems that the xa state >> tracker is built an

Re: [Mesa-dev] Building the xa-vmwgfx target

2012-09-07 Thread Matt Turner
On Fri, Sep 7, 2012 at 1:49 PM, Thomas Hellström wrote: > On 9/7/12 10:39 PM, Matt Turner wrote: >> >> I'm converting the remaining static Makefile to automake, so xa and >> xa-vmwgfx is on my todo list. >> >> I'm very confused by the build though. It seems that the xa state >> tracker is built an

Re: [Mesa-dev] Building the xa-vmwgfx target

2012-09-07 Thread Thomas Hellström
On 9/7/12 10:39 PM, Matt Turner wrote: I'm converting the remaining static Makefile to automake, so xa and xa-vmwgfx is on my todo list. I'm very confused by the build though. It seems that the xa state tracker is built and linked into a single .o file, which is then statically linked into xa-vm

[Mesa-dev] [PATCH] r600g: avoid GPU doing constant preload from random address

2012-09-07 Thread j . glisse
From: Jerome Glisse Previous command stream might have set any of the constant buffer and the previous address might no longer be valid thus GPU might preload constant from random invalid address and possibly triggering lockup. Signed-off-by: Jerome Glisse --- src/gallium/drivers/r600/evergree

[Mesa-dev] Building the xa-vmwgfx target

2012-09-07 Thread Matt Turner
I'm converting the remaining static Makefile to automake, so xa and xa-vmwgfx is on my todo list. I'm very confused by the build though. It seems that the xa state tracker is built and linked into a single .o file, which is then statically linked into xa-vmwgfx. This is reasonably sensible, but th

[Mesa-dev] [PATCH] i965: Allow primitive restart on Haswell for additional primitive types.

2012-09-07 Thread Kenneth Graunke
These are supported in hardware; no need for software fallbacks. Not actually hit in any of our test cases, since they appear to count primitives generated which currently causes software fallbacks anyway. Signed-off-by: Kenneth Graunke --- src/mesa/drivers/dri/i965/brw_primitive_restart.c | 20

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Matt Turner
On Fri, Sep 7, 2012 at 9:28 AM, Jose Fonseca wrote: > - Original Message - >> On Fri, Sep 7, 2012 at 3:30 AM, Jose Fonseca >> wrote: >> > - Original Message - >> >> On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca >> >> >> >> wrote: >> >> > Matt, >> >> > >> >> > I see you went ahead

Re: [Mesa-dev] [PATCH] Set OSMESA_VERSION=8.

2012-09-07 Thread Adam Jackson
On 9/1/12 7:35 PM, Johannes Obermayr wrote: VERSION_NUMBER is not required anymore. So it will be removed. Applied, thanks. - ajax ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

[Mesa-dev] [PATCH] Remove VAAPI support.

2012-09-07 Thread Matt Turner
Not working and unmaintained. --- Only included in this diff are changes to the files (actually, just configure.ac) that we're keeping. configure.ac | 42 +-- src/gallium/state_trackers/va/Makefile| 26 src/gallium/state_trackers/va/ftab.c

[Mesa-dev] [PATCH 10/10] radeon/llvm: Fix operand order of V_CNDMASK in custom inserter

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- src/gallium/drivers/radeon/SIISelLowering.cpp |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/radeon/SIISelLowering.cpp b/src/gallium/drivers/radeon/SIISelLowering.cpp index 42c2e7f..3f23949 100644 --- a/src/gallium/drivers/ra

[Mesa-dev] [PATCH 09/10] radeon/llvm: Assert if we try to encode an unknown register

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- src/gallium/drivers/radeon/SIGenRegisterInfo.pl |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/radeon/SIGenRegisterInfo.pl b/src/gallium/drivers/radeon/SIGenRegisterInfo.pl index 3813eb5..48bd567 100644 --- a/src/gallium/driv

[Mesa-dev] [PATCH 08/10] radeon/llvm: Add register encoding for VCC

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- .../radeon/MCTargetDesc/SIMCCodeEmitter.cpp|1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/radeon/MCTargetDesc/SIMCCodeEmitter.cpp b/src/gallium/drivers/radeon/MCTargetDesc/SIMCCodeEmitter.cpp index 438d2ac..ca4b579 100

[Mesa-dev] [PATCH 07/10] radeon/llvm: Ignore special registers when calculating reg count

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- src/gallium/drivers/radeon/AMDGPUAsmPrinter.cpp |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/radeon/AMDGPUAsmPrinter.cpp b/src/gallium/drivers/radeon/AMDGPUAsmPrinter.cpp index 07f443d..392791c 100644 --- a/src/gallium/driv

[Mesa-dev] [PATCH 06/10] radeonsi: Handle position input parameter for pixel shaders

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- src/gallium/drivers/radeon/SIInstructions.td | 20 src/gallium/drivers/radeon/SIIntrinsics.td |2 ++ src/gallium/drivers/radeonsi/radeonsi_shader.c | 16 +++- src/gallium/drivers/radeonsi/si_state_draw.c | 14 +

[Mesa-dev] [PATCH 05/10] radeon/llvm: Coding style fixes

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- src/gallium/drivers/radeon/AMDGPUAsmPrinter.cpp|2 +- src/gallium/drivers/radeon/SIAssignInterpRegs.cpp | 56 ++-- .../drivers/radeon/SIMachineFunctionInfo.cpp |2 +- src/gallium/drivers/radeon/SIMachineFunctionInfo.h |2 +- 4 files

[Mesa-dev] [PATCH 04/10] radeonsi: Move interpolation mode check into the compiler

2012-09-07 Thread Tom Stellard
From: Tom Stellard The compiler needs to know which interpolation modes are enabled, so it knows which values will be preloaded into the VGPRs. --- src/gallium/drivers/radeon/SIAssignInterpRegs.cpp | 13 - src/gallium/drivers/radeonsi/si_state_draw.c | 20 +--

[Mesa-dev] [PATCH 03/10] radeonsi: Add missing interpolation mode to check for enabled modes

2012-09-07 Thread Tom Stellard
From: Tom Stellard At least one interpolation mode must be enable, but the code that checks this was not checking for perspective center. --- src/gallium/drivers/radeonsi/si_state_draw.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_stat

[Mesa-dev] [PATCH 02/10] radeonsi: Pass shader type to the compiler

2012-09-07 Thread Tom Stellard
From: Tom Stellard --- src/gallium/drivers/radeonsi/radeonsi_shader.c | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/radeonsi/radeonsi_shader.c b/src/gallium/drivers/radeonsi/radeonsi_shader.c index 9fc3446..0994fac 100644 --- a/src/gall

[Mesa-dev] [PATCH 01/10] radeon/llvm: Add SHADER_TYPE instruction

2012-09-07 Thread Tom Stellard
From: Tom Stellard This allows the program to specify the type of shader being compiled (e.g. PXEL, VERTEX, etc.) --- src/gallium/drivers/radeon/AMDGPU.h|9 + src/gallium/drivers/radeon/AMDGPUInstructions.td |7 +++ src/gallium/drivers/radeon/AMDGPUIntrinsic

[Mesa-dev] radeonsi: Flow Control preperation patches

2012-09-07 Thread Tom Stellard
Hi, The series is a prerequisite for flow control support on radeonsi. Flow control for If-Then-Else blocks is mostly implemented, but I'm still trying to debug some GPU hangs that it is causing. -Tom ___ mesa-dev mailing list mesa-dev@lists.freedeskt

Re: [Mesa-dev] [PATCH 02/12] i965/blorp: Clarify why width/height must be adjusted for Gen6 IMS surfaces.

2012-09-07 Thread Paul Berry
On 7 September 2012 09:27, Eric Anholt wrote: > Paul Berry writes: > > > Also add a clarifying comment for why the width/height doesn't need > > adjustment for Gen7. > > > diff --git a/src/mesa/drivers/dri/i965/gen7_blorp.cpp > b/src/mesa/drivers/dri/i965/gen7_blorp.cpp > > index a65a975..ff11f3

Re: [Mesa-dev] [PATCH 07/12] i965/blorp: Account for offsets when emitting SURFACE_STATE.

2012-09-07 Thread Eric Anholt
Paul Berry writes: > Fixes piglit tests "framebuffer-blit-levels {read,draw} depth". > > NOTE: This is a candidate for stable release branches. Up through this patch: Reviewed-by: Eric Anholt After this one, just acked. pgpRkSCvr3zqi.pgp Description: PGP signature __

Re: [Mesa-dev] [PATCH 05/12] i965/blorp: store x and y offsets in brw_blorp_mip_info.

2012-09-07 Thread Eric Anholt
Paul Berry writes: > Currently, gen{6,7}_blorp_emit_surface_state assumes that the src and > dst surfaces are mapped to miplevel 0 and layer 0 (thus no surface > offset is required). This is a bug, since the user might try to blit > to and from levels/layers other than 0. > diff --git a/src/mes

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Jose Fonseca
- Original Message - > On Fri, Sep 7, 2012 at 3:30 AM, Jose Fonseca > wrote: > > - Original Message - > >> On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca > >> > >> wrote: > >> > Matt, > >> > > >> > I see you went ahead and just disabled it. Please remove it all > >> > together. > >

Re: [Mesa-dev] [PATCH 02/12] i965/blorp: Clarify why width/height must be adjusted for Gen6 IMS surfaces.

2012-09-07 Thread Eric Anholt
Paul Berry writes: > Also add a clarifying comment for why the width/height doesn't need > adjustment for Gen7. > diff --git a/src/mesa/drivers/dri/i965/gen7_blorp.cpp > b/src/mesa/drivers/dri/i965/gen7_blorp.cpp > index a65a975..ff11f3a 100644 > --- a/src/mesa/drivers/dri/i965/gen7_blorp.cpp >

Re: [Mesa-dev] [PATCH 01/12] i965/gen6+: Adjust stencil buffer size after computing miptree layout.

2012-09-07 Thread Eric Anholt
Paul Berry writes: > Since Gen6+ stencil buffers use W-tiling (a tiling arrangement which > drm and the kernel are not aware of) we need to round up the width and > height of a stencil buffer to multiples of the W-tile size (64x64) > before allocating a stencil buffer. Previously, we rounded up

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Stéphane Marchesin
On Fri, Sep 7, 2012 at 8:19 AM, Matt Turner wrote: > On Fri, Sep 7, 2012 at 3:30 AM, Jose Fonseca wrote: >> - Original Message - >>> On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca >>> wrote: >>> > Matt, >>> > >>> > I see you went ahead and just disabled it. Please remove it all >>> > toge

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Marek Olšák
On Fri, Sep 7, 2012 at 8:56 AM, Matt Turner wrote: > On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca wrote: >> Matt, >> >> I see you went ahead and just disabled it. Please remove it all together. >> >> Touching code that is not built nor tested ends just silently introduces >> bugs, so keeping th

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Christoph Bumiller
On 07.09.2012 17:17, Matt Turner wrote: > On Fri, Sep 7, 2012 at 7:55 AM, Christoph Bumiller > wrote: >> On 07.09.2012 12:30, Jose Fonseca wrote: >>> - Original Message - On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca wrote: > Matt, > > I see you went ahead and just d

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Matt Turner
On Fri, Sep 7, 2012 at 3:30 AM, Jose Fonseca wrote: > - Original Message - >> On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca >> wrote: >> > Matt, >> > >> > I see you went ahead and just disabled it. Please remove it all >> > together. >> > >> > Touching code that is not built nor tested en

Re: [Mesa-dev] [PATCH] i965: Fix virtual_grf_interferes() between calculate_live_intervals() and DCE.

2012-09-07 Thread Eric Anholt
Kenneth Graunke writes: > On 09/05/2012 11:16 PM, Eric Anholt wrote: >> This fixes the blue zombies bug in l4d2. >> >> NOTE: This is a candidate for the 9.0 branch. >> --- >> .../drivers/dri/i965/brw_fs_live_variables.cpp | 24 >> >> 1 file changed, 24 insertions(+)

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Matt Turner
On Fri, Sep 7, 2012 at 7:55 AM, Christoph Bumiller wrote: > On 07.09.2012 12:30, Jose Fonseca wrote: >> - Original Message - >>> On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca >>> wrote: Matt, I see you went ahead and just disabled it. Please remove it all together. >>>

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Christoph Bumiller
On 07.09.2012 12:30, Jose Fonseca wrote: > - Original Message - >> On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca >> wrote: >>> Matt, >>> >>> I see you went ahead and just disabled it. Please remove it all >>> together. >>> >>> Touching code that is not built nor tested ends just silently >

Re: [Mesa-dev] [PATCH 1/2] radeon/llvm: Match fexp2 for SI.

2012-09-07 Thread Tom Stellard
On Fri, Sep 07, 2012 at 12:27:35PM +0200, Michel Dänzer wrote: > From: Michel Dänzer > > Signed-off-by: Michel Dänzer For the series: Reviewed-by: Tom Stellard > --- > src/gallium/drivers/radeon/SIInstructions.td |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a

Re: [Mesa-dev] [PATCH 1/2] radeon/llvm: Match fexp2 for SI.

2012-09-07 Thread Alex Deucher
On Fri, Sep 7, 2012 at 6:27 AM, Michel Dänzer wrote: > From: Michel Dänzer > > Signed-off-by: Michel Dänzer for the series: Reviewed-by: Alex Deucher > --- > src/gallium/drivers/radeon/SIInstructions.td |4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/src/galli

Re: [Mesa-dev] [PATCH] build/glsl: Add missing extension for builtin_compiler.

2012-09-07 Thread Jose Fonseca
- Original Message - > On Thu, Sep 6, 2012 at 3:21 PM, Kenneth Graunke > wrote: > > On 09/06/2012 09:08 AM, Vinson Lee wrote: > >> On Thu, Sep 6, 2012 at 4:19 AM, Jon TURNEY > >> wrote: > >>> On 06/09/2012 08:08, Matt Turner wrote: > On Wed, Sep 5, 2012 at 10:48 PM, Vinson Lee > >>

Re: [Mesa-dev] [PATCH] build: Disable building of d3d1x

2012-09-07 Thread Jose Fonseca
- Original Message - > On Thu, Sep 6, 2012 at 11:39 PM, Jose Fonseca > wrote: > > Matt, > > > > I see you went ahead and just disabled it. Please remove it all > > together. > > > > Touching code that is not built nor tested ends just silently > > introduces bugs, so keeping this around wo

[Mesa-dev] [Bug 49504] [Bisected] Mesa master compilation broke when built with --with-llvm-shared-libs

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49504 Fabio Pedretti changed: What|Removed |Added Resolution|DUPLICATE |FIXED --- Comment #5 from Fabio Pedrett

[Mesa-dev] [PATCH 1/2] radeon/llvm: Match fexp2 for SI.

2012-09-07 Thread Michel Dänzer
From: Michel Dänzer Signed-off-by: Michel Dänzer --- src/gallium/drivers/radeon/SIInstructions.td |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeon/SIInstructions.td b/src/gallium/drivers/radeon/SIInstructions.td index 2868196..8f9de52 100644

[Mesa-dev] [PATCH 2/2] radeonsi: Handle TGSI_SEMANTIC_FOG.

2012-09-07 Thread Michel Dänzer
From: Michel Dänzer Fixes exponential fog. The pixel shaders for linear fog seem to get miscompiled still somehow. Signed-off-by: Michel Dänzer --- src/gallium/drivers/radeonsi/radeonsi_shader.c |1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/radeonsi/radeonsi_shader

[Mesa-dev] [Bug 52167] llvmpipe test programs link fails when ld --as-needed option is used

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52167 --- Comment #8 from Olivier Blin 2012-09-07 08:55:27 UTC --- Fabio: no, the bug is still present in 9.0 branch, and likely in master since the build files did not change. The patch from comment 4 can still be applied as is. -- Configure bugmai

[Mesa-dev] [Bug 54626] New: llvmpipe's Makefile doesn't take care of CXXFLAGS or CPPFLAGS

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54626 Bug #: 54626 Summary: llvmpipe's Makefile doesn't take care of CXXFLAGS or CPPFLAGS Classification: Unclassified Product: Mesa Version: git Platform: Other OS/

[Mesa-dev] [Bug 45466] Updated configure.ac check for llvm-config to use 32 version when appropriate

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45466 --- Comment #2 from Alexandre Demers 2012-09-07 07:46:20 UTC --- This patch doesn't apply correctly on latest git. However, when fixed, it helps. I don't know if it's the same situation everywhere, but under ArchLinux, llvm-config-32 should be r

[Mesa-dev] [Bug 45466] Updated configure.ac check for llvm-config to use 32 version when appropriate

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45466 Alexandre Demers changed: What|Removed |Added CC||alexandre.f.dem...@gmail.co

[Mesa-dev] [Bug 41700] Gallium won't build with --enable-32-bit on a 64-bit system

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41700 --- Comment #2 from Alexandre Demers 2012-09-07 07:42:43 UTC --- The proposed patch from bug 45466 was not commited. It doesn't apply correctly with latest git. However, when fixed, it helps from what I've encountered. -- Configure bugmail: ht

[Mesa-dev] [Bug 54326] When building 32 bit on 64 bit, many lib path variables are not pointing to 32 bit folders.

2012-09-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54326 Alexandre Demers changed: What|Removed |Added Status|NEW |RESOLVED Resolution|