diff options
author | Chia-I Wu <[email protected]> | 2010-05-11 12:36:49 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-05-11 12:42:22 +0800 |
commit | 3ecb8c20f8683ed2961bc54e5441f694fc3a2143 (patch) | |
tree | 690b6efbee207dda402245f6d7347db8bda09df6 /src/gallium/targets/Makefile.egl | |
parent | fef6e36e0736a68e24d7844bae65a01de8359214 (diff) |
gallium: Add llvmpipe support to st/egl.
Update Makefile rules for st/egl.
Diffstat (limited to 'src/gallium/targets/Makefile.egl')
-rw-r--r-- | src/gallium/targets/Makefile.egl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/targets/Makefile.egl b/src/gallium/targets/Makefile.egl index 7e65411e982..604841f710a 100644 --- a/src/gallium/targets/Makefile.egl +++ b/src/gallium/targets/Makefile.egl @@ -23,6 +23,12 @@ x11_ST = $(TOP)/src/gallium/state_trackers/egl/libeglx11.a \ x11_LIBS = $(common_LIBS) -lX11 -lXext -lXfixes +ifeq ($(MESA_LLVM),1) +x11_ST += $(TOP)/src/gallium/drivers/llvmpipe/libllvmpipe.a +x11_LIBS += $(LLVM_LIBS) +LDFLAGS += $(LLVM_LDFLAGS) +endif + kms_ST = $(TOP)/src/gallium/state_trackers/egl/libeglkms.a kms_LIBS = $(common_LIBS) |