diff options
author | Stéphane Marchesin <[email protected]> | 2011-06-01 10:37:13 -0700 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2011-06-06 12:35:58 -0700 |
commit | 1af8b7250f477cfb36cbd8d4885f0cfb9a2e9779 (patch) | |
tree | 1ee7d5bc4193b186ca9041b7936381b70c9616de /src/gallium/drivers/llvmpipe/Makefile | |
parent | c2e659037f4d0687e948e3d17f2d950d3e2dae1b (diff) |
llvmpipe: use $(CXX) instead of g++ for linking.
This allows setting the path to the C++ compiler.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/Makefile')
-rw-r--r-- | src/gallium/drivers/llvmpipe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/Makefile b/src/gallium/drivers/llvmpipe/Makefile index 4068bed393c..ba9705bebee 100644 --- a/src/gallium/drivers/llvmpipe/Makefile +++ b/src/gallium/drivers/llvmpipe/Makefile @@ -71,7 +71,7 @@ lp_tile_soa.c: lp_tile_soa.py ../../auxiliary/util/u_format_parse.py ../../auxil LDFLAGS += $(LLVM_LDFLAGS) LIBS += -L../../auxiliary/ -lgallium libllvmpipe.a $(LLVM_LIBS) $(GL_LIB_DEPS) -LD=g++ +LD=$(CXX) $(PROGS): lp_test_main.o libllvmpipe.a |