On Fri, Oct 17, 2014 at 9:18 AM, Boxiang Sun <[email protected]> wrote: > Hi, > > I build mesa with --enable-glx-tls option. But when use > nm libGL.so.1.2.0 | grep glapi > > it still show these: > U _glapi_get_dispatch_table_size > U _glapi_get_proc_address > U _glapi_get_proc_offset > U _glapi_set_context > U _glapi_set_dispatch > U _glapi_tls_Dispatch > > Why the _glapi_tls_Dispatch still undefined? Did I miss anything? > > Regards, > Sun
U means undefined -- usually defined in another library. In this case, they're defined in libglapi.so, which libGL.so depends on. So, all of t his is expected. _______________________________________________ mesa-dev mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-dev
