diff options
author | Kyle Brenneman <kbrenneman@nvidia.com> | 2015-11-09 09:50:53 -0700 |
---|---|---|
committer | Kyle Brenneman <kbrenneman@nvidia.com> | 2015-11-11 10:58:04 -0700 |
commit | 062653836138f8ec85170eee6bad63fea294b631 (patch) | |
tree | 5c9eaf514b2988a9cbb1e5fbbe2a6c7afc3ab0c0 /src/GLdispatch/vnd-glapi | |
parent | 81bbbaeae9909ce30503e6fc01698c38c507c107 (diff) |
libOpenGL.so: Only generate the entrypoints that we're going to export.
gen_gldispatch_mapi.py now takes an extra parameter to specify which library
it's building, so that it can generate the correct function list for that
library. For libOpenGL.so, it will only generate the functions that it's going
to export.
Updated the makefiles for libOpenGL.so, libGL.so, and libGLdispatch.so to
generate the correct set of entrypoints for each library.
Moved the code to figure out the libOpenGL.so function names to genCommon.py.
Diffstat (limited to 'src/GLdispatch/vnd-glapi')
-rw-r--r-- | src/GLdispatch/vnd-glapi/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GLdispatch/vnd-glapi/Makefile.am b/src/GLdispatch/vnd-glapi/Makefile.am index 4696c16..8460411 100644 --- a/src/GLdispatch/vnd-glapi/Makefile.am +++ b/src/GLdispatch/vnd-glapi/Makefile.am @@ -35,7 +35,7 @@ libglapi_la_LDFLAGS = -no-undefined include $(top_srcdir)/src/generate/glvnd_gen.mk glapi_mapi_tmp.h : $(glapi_gen_mapi_deps) - $(call glapi_gen_mapi) + $(call glapi_gen_mapi, gl) g_glapi_inittable.c: $(glapi_gen_initdispatch_deps) $(call glapi_gen_initdispatch) |