[Only for documenting the build-error]

$ cd ~/src/mesa/mesa/progs/xdemos/

$ undefref="glBlitFramebufferEXT glDeleteVertexArraysAPPLE
glIsVertexArrayAPPLE glBlendEquationSeparateEXT"

GOOD:
$ for i in $undefref ; do objdump -x ../../lib/libGL.so | grep $i ; done
0001b000 l     F .text  000000a0              __indirect_glBlitFramebufferEXT
0001b570 l     F .text  00000058
__indirect_glBlendEquationSeparateEXT

BAD:
$ for i in $undefref ; do objdump -x ../../lib/libGL.so | grep $i ; done
0001b000 l     F .text  000000a0              __indirect_glBlitFramebufferEXT
00000000         *UND*  00000000              glBlitFramebufferEXT
00000000         *UND*  00000000              glDeleteVertexArraysAPPLE
00000000         *UND*  00000000              glIsVertexArrayAPPLE
0001b570 l     F .text  00000058
__indirect_glBlendEquationSeparateEXT
00000000         *UND*  00000000              glBlendEquationSeparateEXT

- Sedat -

On Sat, Mar 20, 2010 at 5:11 PM, Chia-I Wu <o...@lunarg.com> wrote:
> On Sat, Mar 20, 2010 at 9:51 PM, Sedat Dilek <sedat.di...@googlemail.com> 
> wrote:
>> while upgrading my mesa from 7.8 GIT branch, I saw with
>> commit 41a87a43e11c664935349f938022d58d3e22da4e
>> "glapi: Correctly generate static disatches for X86."
>> the build breaking (especially with xdemos).
> Sorry for introducing the build error.  I've committed a fix to it.  Can you
> git pull again and see if it works for you too?
>
> --
> o...@lunarg.com
>

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev

Reply via email to