v3d: Fix automake linking error.

CXXLD    gallium_dri.la
../../../../src/broadcom/.libs/libbroadcom.a(clif_dump.o): In function `clif_dump_packet':
src/broadcom/clif/clif_dump.c:87: undefined reference to `v3d33_clif_dump_packet'
src/broadcom/clif/clif_dump.c:85: undefined reference to `v3d41_clif_dump_packet'
../../../../src/broadcom/.libs/libbroadcom.a(clif_dump.o): In function `clif_process_worklist':
src/broadcom/clif/clif_dump.c:140: undefined reference to `v3d41_clif_dump_gl_shader_state_record'
src/broadcom/clif/clif_dump.c:144: undefined reference to `v3d33_clif_dump_gl_shader_state_record'

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Vinson Lee 2018-05-22 00:17:45 +00:00 committed by Eric Anholt
parent d6cee5a162
commit d511bba2f9
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@ TARGET_CPPFLAGS += -DGALLIUM_V3D
TARGET_LIB_DEPS += \
$(top_builddir)/src/gallium/winsys/v3d/drm/libv3ddrm.la \
$(top_builddir)/src/gallium/drivers/v3d/libv3d.la \
$(top_builddir)/src/broadcom/libbroadcom.la
$(top_builddir)/src/broadcom/libbroadcom.la \
$(top_builddir)/src/broadcom/libbroadcom_v33.la \
$(top_builddir)/src/broadcom/libbroadcom_v41.la
if !HAVE_GALLIUM_VC4
TARGET_LIB_DEPS += $(top_builddir)/src/broadcom/cle/libbroadcom_cle.la