[Mesa-dev] [Bug 38699] Can't compile with d3d1x since commit 73df31eedd0f33c8a9907855cb247c8f87964c48

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38699 --- Comment #3 from Chia-I Wu 2011-06-26 20:43:14 PDT --- Does $ make -C src/egl clean $ make help? The symbol was introduced to libEGL in another commit. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ---

[Mesa-dev] [Bug 38699] Can't compile with d3d1x since commit 73df31eedd0f33c8a9907855cb247c8f87964c48

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38699 --- Comment #2 from Alexandre Demers 2011-06-26 20:39:34 PDT --- Better but it doesn't seem OK though. Here how it ends: make[3]: Entering directory `/home/dema1701/projects/mesa/mesa/src/gallium/targets/egl-static' /bin/bash ../../../../bin/mk

[Mesa-dev] [Bug 38699] Can't compile with d3d1x since commit 73df31eedd0f33c8a9907855cb247c8f87964c48

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38699 --- Comment #1 from Chia-I Wu 2011-06-26 20:22:13 PDT --- I've pushed a fix (compile tested). Can you try again? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- Yo

[Mesa-dev] [Bug 38699] Can't compile with d3d1x since commit 73df31eedd0f33c8a9907855cb247c8f87964c48

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38699 Alexandre Demers changed: What|Removed |Added Platform|Other |All Severity|normal

[Mesa-dev] [Bug 38699] New: Can't compile with d3d1x since commit 73df31eedd0f33c8a9907855cb247c8f87964c48

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38699 Summary: Can't compile with d3d1x since commit 73df31eedd0f33c8a9907855cb247c8f87964c48 Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW

Re: [Mesa-dev] Mesa 7.10.3 build failure (fdo #38688)

2011-06-26 Thread Marek Olšák
Done. Marek On Sun, Jun 26, 2011 at 5:24 PM, Lucas Stach wrote: > Hi, > > can anyone with commit access pick over > 5c102dd94f435e97507213fbd128e50dd15f5f54 from master to 7.10? > > Nouveau had an API break after libdrm 2.4.23 and 7.10.3 now demands > libdrm >=2.4.24, which causes the build to f

[Mesa-dev] Mesa 7.10.3 build failure (fdo #38688)

2011-06-26 Thread Lucas Stach
Hi, can anyone with commit access pick over 5c102dd94f435e97507213fbd128e50dd15f5f54 from master to 7.10? Nouveau had an API break after libdrm 2.4.23 and 7.10.3 now demands libdrm >=2.4.24, which causes the build to fail. Picking over this commit should fix the build and fdo bug #38688. Thanks,

[Mesa-dev] [PATCH-RFC] autoconf: add --enable-{dri,glx,osmesa}

2011-06-26 Thread Chia-I Wu
From: Chia-I Wu The idea is that DRI driver, libGL and libOSMesa are libraries that can be independently enabled, yet --with-driver does not allow us to easily do that, if not impossible. This also matches what --enable-{egl,xorg,d3d1x} do for the respective libraries. There are two libGL provi

Re: [Mesa-dev] Mesa 7.11 devel still fails on crosscompiling (generating of builtin_function.cpp)

2011-06-26 Thread Stephan Raue
here a quick and dirty sample how to successfull crosscompile: HOST_CC="$HOST_CC" \ HOST_OPT_FLAGS="$HOST_CFLAGS" \ X11_INCLUDES= \ DRI_DRIVER_INSTALL_DIR="$XORG_PATH_DRI" \ DRI_DRIVER_SEARCH_DIR="$XORG_PATH_DRI" \ ./configure --host=$TARGET_NAME \ --build=$HOST_NAME \ --p

[Mesa-dev] [Bug 38688] Mesa 7.10.3 FTBFS (because libdrm?)

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38688 --- Comment #3 from Lucas Stach 2011-06-26 03:43:51 PDT --- Ok, we have a problem here. The patch you mentioned was sent in because of the nouveau api change. I don't know why this ended up in 7.10.3. As far as I can see it *should* be safe to r

[Mesa-dev] [Bug 38688] Mesa 7.10.3 FTBFS (because libdrm?)

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38688 --- Comment #2 from Jon Severinsson 2011-06-26 03:29:51 PDT --- (In reply to comment #1) > This is not a bug. libdrm >2.4.23 and mesa 7.10.3 just don't go together > because of a api change in nouveau. Well, 7.10.3 requires libdrm >=2.4.24 to b

Re: [Mesa-dev] Mesa 7.11 devel still fails on crosscompiling (generating of builtin_function.cpp)

2011-06-26 Thread Stephan Raue
i have figured out it should work if src/glsl/builtin_compiler, src/glsl/glcpp/glcpp and src/glsl/glsl_compiler will be buiöld with $HOST_CC, $HOST_CXX, $HOST_CFLAGS, $HOST_CXXFLAGS and $HOST_LDFLAGS. because some or all three tools are linked with libglsl.a we must build libglsl.a twice (one f

[Mesa-dev] [Bug 38688] Mesa 7.10.3 FTBFS (because libdrm?)

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38688 --- Comment #1 from Lucas Stach 2011-06-26 02:21:55 PDT --- This is not a bug. libdrm >2.4.23 and mesa 7.10.3 just don't go together because of a api change in nouveau. If you really want to try to get it to build together, try including nv04_pu

[Mesa-dev] [Bug 38688] Mesa 7.10.3 FTBFS (because libdrm?)

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38688 Guido Iodice changed: What|Removed |Added CC||guido.iod...@gmail.com -- Configure bugm

[Mesa-dev] [Bug 38688] New: Mesa 7.10.3 FTBFS (because libdrm?)

2011-06-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38688 Summary: Mesa 7.10.3 FTBFS (because libdrm?) Product: Mesa Version: 7.10 Platform: All OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

Re: [Mesa-dev] Mesa 7.11 devel still fails on crosscompiling (generating of builtin_function.cpp)

2011-06-26 Thread Jose Fonseca
I got it working with scons FWIW, but given that scons doesn't build everything yet, that doesn't really help. Is compiled code code generation really justifiable? Couldn't we just include the sources to builtin_function.cpp, and compile them in runtime? Jose - Original Message - >