From: Sedat D. <sed...@go...> - 2010-03-20 16:30:44
|
[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 <ol...@lu...> wrote: > On Sat, Mar 20, 2010 at 9:51 PM, Sedat Dilek <sed...@go...> 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? > > -- > ol...@Lu... > |