diff options
author | Chia-I Wu <[email protected]> | 2010-05-12 15:46:57 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-05-12 15:48:11 +0800 |
commit | 084eadac88fd27386539d36d1e382c8bbd15194c (patch) | |
tree | 8fd15b7b3f52d96ebd6e1dd92cf648f31d5544cf /src/gallium/targets | |
parent | d9f38e1a71f94b112b4ab288a7043dd2fc4a701d (diff) |
st/egl: Link egl-apis to LLVM when enabled.
This is required when a client API (i.e. OpenGL) uses the draw module.
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/egl-apis/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gallium/targets/egl-apis/Makefile b/src/gallium/targets/egl-apis/Makefile index 878254c0925..88915bfc5ec 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 |