From 084eadac88fd27386539d36d1e382c8bbd15194c Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Wed, 12 May 2010 15:46:57 +0800 Subject: st/egl: Link egl-apis to LLVM when enabled. This is required when a client API (i.e. OpenGL) uses the draw module. --- src/gallium/targets/egl-apis/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/gallium') diff --git a/src/gallium/targets/egl-apis/Makefile b/src/gallium/targets/egl-apis/Makefile index 878254c092..88915bfc5e 100644 --- a/src/gallium/targets/egl-apis/Makefile +++ b/src/gallium/targets/egl-apis/Makefile @@ -21,6 +21,16 @@ GLESv1_CM_SYS := -lpthread -lm -L$(TOP)/$(LIB_DIR) -l$(GLESv1_CM_LIB) GLESv2_SYS := -lpthread -lm -L$(TOP)/$(LIB_DIR) -l$(GLESv2_LIB) OpenVG_SYS := -lm -L$(TOP)/$(LIB_DIR) -l$(VG_LIB) +# $(LLVM_LIBS) will be discarded except for OpenGL, which creates a private +# draw context for selection/feedback mode. +ifeq ($(MESA_LLVM),1) +GL_SYS += $(LLVM_LIBS) +GLESv1_CM_SYS += $(LLVM_LIBS) +GLESv2_SYS += $(LLVM_LIBS) +OpenVG_SYS += $(LLVM_LIBS) +LDFLAGS += $(LLVM_LDFLAGS) +endif + # project libs GL_LIBS := $(TOP)/src/mesa/libmesagallium.a GLESv1_CM_LIBS := $(TOP)/src/mesa/libes1gallium.a -- cgit v1.2.3