diff options
author | Dave Airlie <[email protected]> | 2010-04-22 14:59:29 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-04-24 18:55:50 +1000 |
commit | 81fe19843ac2afdc4fa1e1c87bc979b295af240e (patch) | |
tree | dfbd886ffdfef5fe4cc8f8aaca4377c8c410c90b /src/gallium/drivers/llvmpipe/Makefile | |
parent | e3eed8bf218c04127484e0664c67c100703fa1d8 (diff) |
llvmpipe: add initial autoconf support.
allows the swrastg_dri.so to be built with llvmpipe, also links llvm
to all dri drivers
use --enable-gallium-llvm to use it.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/Makefile')
-rw-r--r-- | src/gallium/drivers/llvmpipe/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/Makefile b/src/gallium/drivers/llvmpipe/Makefile index 4a3fc036c49..7bf5b097628 100644 --- a/src/gallium/drivers/llvmpipe/Makefile +++ b/src/gallium/drivers/llvmpipe/Makefile @@ -58,8 +58,9 @@ include ../../Makefile.template lp_tile_soa.c: lp_tile_soa.py ../../auxiliary/util/u_format_parse.py ../../auxiliary/util/u_format_pack.py ../../auxiliary/util/u_format.csv python lp_tile_soa.py ../../auxiliary/util/u_format.csv > $@ - -LIBS += $(GL_LIB_DEPS) -L../../auxiliary/ -lgallium libllvmpipe.a +LDFLAGS += $(LLVM_LDFLAGS) +LIBS += $(GL_LIB_DEPS) -L../../auxiliary/ -lgallium libllvmpipe.a $(LLVM_LIBS) +LD=g++ $(PROGS): lp_test_main.o libllvmpipe.a |