winsys/drm: Do not use --whole-archive in Makefile.egl.
authorChia-I Wu <olv@lunarg.com>
Thu, 18 Feb 2010 04:38:47 +0000 (12:38 +0800)
committerChia-I Wu <olv@lunarg.com>
Thu, 18 Feb 2010 05:07:01 +0000 (13:07 +0800)
--whole-archive is not portable.  Have the drivers reference _eglMain as
a poor man's --whole-archive.

src/gallium/winsys/drm/Makefile.egl
src/gallium/winsys/drm/i965/egl/dummy.c
src/gallium/winsys/drm/intel/egl/dummy.c
src/gallium/winsys/drm/nouveau/egl/dummy.c
src/gallium/winsys/drm/radeon/egl/dummy.c
src/gallium/winsys/drm/swrast/egl/dummy.c
src/gallium/winsys/drm/vmware/egl/dummy.c

index b1f20385502899f1b23d6341873db0bf4548a1b5..8363de6e975f18c75baa0bcba18a41400f6f76c7 100644 (file)
@@ -38,8 +38,7 @@ $(EGL_DISPLAY_LIBS): $(TOP)/$(LIB_DIR)/%.so: %.so
 
 define mklib-egl
 $(MKLIB) -o $@ -noprefix -linker '$(CC)' -ldflags '$(LDFLAGS)' \
-       $(MKLIB_OPTIONS) $(EGL_DRIVER_OBJECTS) \
-       -Wl,--whole-archive $($(1)_ST) -Wl,--no-whole-archive \
+       $(MKLIB_OPTIONS) $(EGL_DRIVER_OBJECTS) $($(1)_ST) \
        $(EGL_DRIVER_PIPES) $(GALLIUM_AUXILIARIES) $($(1)_LIBS) $(EGL_DRIVER_LIBS)
 endef
 
index 4a1bc28b0b60a60603cda147503dc3227021e1f6..3181d0ba7e83a2b37f3899a335639ab73a710f0d 100644 (file)
@@ -1 +1,3 @@
-/* mklib expects at least one object file */
+/* A poor man's --whole-archive for EGL drivers */
+void *_eglMain(void *);
+void *_eglWholeArchive = (void *) _eglMain;
index 4a1bc28b0b60a60603cda147503dc3227021e1f6..3181d0ba7e83a2b37f3899a335639ab73a710f0d 100644 (file)
@@ -1 +1,3 @@
-/* mklib expects at least one object file */
+/* A poor man's --whole-archive for EGL drivers */
+void *_eglMain(void *);
+void *_eglWholeArchive = (void *) _eglMain;
index 4a1bc28b0b60a60603cda147503dc3227021e1f6..3181d0ba7e83a2b37f3899a335639ab73a710f0d 100644 (file)
@@ -1 +1,3 @@
-/* mklib expects at least one object file */
+/* A poor man's --whole-archive for EGL drivers */
+void *_eglMain(void *);
+void *_eglWholeArchive = (void *) _eglMain;
index 4a1bc28b0b60a60603cda147503dc3227021e1f6..3181d0ba7e83a2b37f3899a335639ab73a710f0d 100644 (file)
@@ -1 +1,3 @@
-/* mklib expects at least one object file */
+/* A poor man's --whole-archive for EGL drivers */
+void *_eglMain(void *);
+void *_eglWholeArchive = (void *) _eglMain;
index 4a1bc28b0b60a60603cda147503dc3227021e1f6..3181d0ba7e83a2b37f3899a335639ab73a710f0d 100644 (file)
@@ -1 +1,3 @@
-/* mklib expects at least one object file */
+/* A poor man's --whole-archive for EGL drivers */
+void *_eglMain(void *);
+void *_eglWholeArchive = (void *) _eglMain;
index 4a1bc28b0b60a60603cda147503dc3227021e1f6..3181d0ba7e83a2b37f3899a335639ab73a710f0d 100644 (file)
@@ -1 +1,3 @@
-/* mklib expects at least one object file */
+/* A poor man's --whole-archive for EGL drivers */
+void *_eglMain(void *);
+void *_eglWholeArchive = (void *) _eglMain;