mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
llvmpipe: Fix link order for test apps
When linking with --as-needed libgallium.a can't find the dl* symbols from -ldl since order matters more with --as-needed. Thanks to Nirbheek Chauhan and Adam Jackson
This commit is contained in:
parent
2386d41648
commit
b3f625f5e4
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ lp_tile_soa.c: lp_tile_soa.py ../../auxiliary/util/u_format_parse.py ../../auxil
|
|||
python lp_tile_soa.py ../../auxiliary/util/u_format.csv > $@
|
||||
|
||||
LDFLAGS += $(LLVM_LDFLAGS)
|
||||
LIBS += $(GL_LIB_DEPS) -L../../auxiliary/ -lgallium libllvmpipe.a $(LLVM_LIBS)
|
||||
LIBS += -L../../auxiliary/ -lgallium libllvmpipe.a $(LLVM_LIBS) $(GL_LIB_DEPS)
|
||||
LD=g++
|
||||
|
||||
$(PROGS): lp_test_main.o libllvmpipe.a
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue