winsys/drm: Use egl_g3d to build EGL drivers.

The new EGL drivers use egl_g3d and respect EGL_DISPLAYS.  They are
named after the display supported and the DRM name.

Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
Chia-I Wu 2010-01-10 23:08:39 +08:00
parent a68b51deb2
commit 077d6dd750
12 changed files with 145 additions and 1 deletions

View file

@ -1162,7 +1162,7 @@ yes)
dri)
GALLIUM_STATE_TRACKERS_DIRS="dri"
if test "x$enable_egl" = xyes; then
GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl"
GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl egl_g3d"
fi
# Have only tested st/xorg on 1.6.0 servers
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6.0],

View file

@ -0,0 +1,64 @@
# src/gallium/winsys/drm/Makefile.egl_g3d
# The driver Makefile should define
#
# EGL_DRIVER_NAME, the name of the driver
# EGL_DRIVER_SOURCES, the sources of the driver
# EGL_DRIVER_LIBS, extra libraries needed by the driver
# EGL_DRIVER_PIPES, the pipe drivers of the driver
#
# before including this file.
EGL_DRIVER_OBJECTS = $(EGL_DRIVER_SOURCES:.c=.o)
common_LIBS = -ldrm -lm -ldl
x11_ST = $(TOP)/src/gallium/state_trackers/egl_g3d/libeglx11.a
x11_LIBS = $(common_LIBS) -lX11 -lXext -lXfixes
kms_ST = $(TOP)/src/gallium/state_trackers/egl_g3d/libeglkms.a
kms_LIBS = $(common_LIBS)
##### RULES #####
.c.o:
$(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
##### TARGETS #####
EGL_DISPLAY_DRIVERS = $(foreach dpy, $(EGL_DISPLAYS), egl_$(dpy)_$(EGL_DRIVER_NAME).so)
LIB_GALLIUM_DIR = $(TOP)/$(LIB_DIR)/gallium
EGL_DISPLAY_LIBS = $(foreach drv, $(EGL_DISPLAY_DRIVERS), $(LIB_GALLIUM_DIR)/$(drv))
default: $(EGL_DISPLAY_LIBS)
$(EGL_DISPLAY_LIBS): $(LIB_GALLIUM_DIR)/%.so: %.so
@mkdir -p $(LIB_GALLIUM_DIR)
$(INSTALL) $^ $(LIB_GALLIUM_DIR)
define mklib-egl
$(MKLIB) -noprefix -o $@ $(EGL_DRIVER_OBJECTS) \
-Wl,--whole-archive $($(1)_ST) -Wl,--no-whole-archive \
$(EGL_DRIVER_PIPES) $(GALLIUM_AUXILIARIES) $($(1)_LIBS) $(EGL_DRIVER_LIBS)
endef
egl_x11_$(EGL_DRIVER_NAME).so: $(EGL_DRIVER_OBJECTS) $(x11_ST) $(EGL_DRIVER_PIPES) $(GALLIUM_AUXILIARIES) Makefile
$(call mklib-egl,x11)
egl_kms_$(EGL_DRIVER_NAME).so: $(EGL_DRIVER_OBJECTS) $(kms_ST) $(EGL_DRIVER_PIPES) $(GALLIUM_AUXILIARIES) Makefile
$(call mklib-egl,kms)
clean:
-rm -f $(EGL_DRIVER_OBJECTS)
-rm -f $(EGL_DISPLAY_DRIVERS)
install: $(EGL_DISPLAY_LIBS)
@$(INSTALL) -d $(DESTDIR)$(DRI_DRIVER_INSTALL_DIR)
@echo "Install $(EGL_DISPLAY_DRIVERS)"
@for lib in "$(EGL_DISPLAY_LIBS)"; do \
$(MINSTALL) -m 755 "$$lib" $(DESTDIR)$(DRI_DRIVER_INSTALL_DIR); \
done
depend:

View file

@ -0,0 +1,14 @@
TOP = ../../../../../..
include $(TOP)/configs/current
EGL_DRIVER_NAME = i965
EGL_DRIVER_SOURCES = dummy.c
EGL_DRIVER_LIBS = -ldrm_intel
EGL_DRIVER_PIPES = \
$(TOP)/src/gallium/winsys/drm/i965/gem/libi965drm.a \
$(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
$(TOP)/src/gallium/drivers/trace/libtrace.a \
$(TOP)/src/gallium/drivers/i965/libi965.a
include ../../Makefile.egl_g3d

View file

@ -0,0 +1 @@
/* mklib expects at least one object file */

View file

@ -0,0 +1,14 @@
TOP = ../../../../../..
include $(TOP)/configs/current
EGL_DRIVER_NAME = i915
EGL_DRIVER_SOURCES = dummy.c
EGL_DRIVER_LIBS = -ldrm_intel
EGL_DRIVER_PIPES = \
$(TOP)/src/gallium/winsys/drm/intel/gem/libinteldrm.a \
$(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
$(TOP)/src/gallium/drivers/trace/libtrace.a \
$(TOP)/src/gallium/drivers/i915/libi915.a
include ../../Makefile.egl_g3d

View file

@ -0,0 +1 @@
/* mklib expects at least one object file */

View file

@ -0,0 +1,19 @@
TOP = ../../../../../..
include $(TOP)/configs/current
EGL_DRIVER_NAME = nouveau
EGL_DRIVER_SOURCES = dummy.c
EGL_DRIVER_LIBS = -ldrm_nouveau
EGL_DRIVER_PIPES = \
$(TOP)/src/gallium/winsys/drm/nouveau/drm/libnouveaudrm.a \
$(TOP)/src/gallium/drivers/nv04/libnv04.a \
$(TOP)/src/gallium/drivers/nv10/libnv10.a \
$(TOP)/src/gallium/drivers/nv20/libnv20.a \
$(TOP)/src/gallium/drivers/nv30/libnv30.a \
$(TOP)/src/gallium/drivers/nv40/libnv40.a \
$(TOP)/src/gallium/drivers/nv50/libnv50.a \
$(TOP)/src/gallium/drivers/nouveau/libnouveau.a \
$(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a
include ../../Makefile.egl_g3d

View file

@ -0,0 +1 @@
/* mklib expects at least one object file */

View file

@ -0,0 +1,14 @@
TOP = ../../../../../..
include $(TOP)/configs/current
EGL_DRIVER_NAME = r300
EGL_DRIVER_SOURCES = dummy.c
EGL_DRIVER_LIBS = -ldrm_radeon
EGL_DRIVER_PIPES = \
$(TOP)/src/gallium/winsys/drm/radeon/core/libradeonwinsys.a \
$(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
$(TOP)/src/gallium/drivers/trace/libtrace.a \
$(TOP)/src/gallium/drivers/r300/libr300.a
include ../../Makefile.egl_g3d

View file

@ -0,0 +1 @@
/* mklib expects at least one object file */

View file

@ -0,0 +1,14 @@
TOP = ../../../../../..
include $(TOP)/configs/current
EGL_DRIVER_NAME = vmwgfx
EGL_DRIVER_SOURCES = dummy.c
EGL_DRIVER_LIBS =
EGL_DRIVER_PIPES = \
$(TOP)/src/gallium/winsys/drm/vmware/core/libsvgadrm.a \
$(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
$(TOP)/src/gallium/drivers/trace/libtrace.a \
$(TOP)/src/gallium/drivers/svga/libsvga.a
include ../../Makefile.egl_g3d

View file

@ -0,0 +1 @@
/* mklib expects at least one object file */