Skip to content
Snippets Groups Projects
Commit d7422705 authored by Juan A. Suárez's avatar Juan A. Suárez
Browse files

vc4: Fix automake linking error.

  CXXLD    gallium_dri.la
../../../../src/gallium/drivers/vc4/.libs/libvc4.a(vc4_cl_dump.o): In function `vc4_dump_cl':
src/gallium/drivers/vc4/vc4_cl_dump.c:45: undefined reference to `clif_dump_init'
src/gallium/drivers/vc4/vc4_cl_dump.c:82: undefined reference to `clif_dump_destroy'
../../../../src/broadcom/cle/.libs/libbroadcom_cle.a(cle_libbroadcom_cle_la-v3d_decoder.o): In function `v3d_field_iterator_next':
src/broadcom/cle/v3d_decoder.c:902: undefined reference to `clif_lookup_bo'

Fixes: e92959c4 ("v3d: Pass the whole clif_dump structure to v3d_print_group().")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107423


CC: Eric Anholt <eric@anholt.net>
Acked-by: default avatarEric Anholt <eric@anholt.net>
Reviewed-by: default avatarAndres Gomez <agomez@igalia.com>
parent 810c9a4e
No related branches found
Tags mesa-17.1.0
No related merge requests found
......@@ -2,9 +2,18 @@ if HAVE_GALLIUM_VC4
TARGET_DRIVERS += vc4
TARGET_CPPFLAGS += -DGALLIUM_VC4
if !HAVE_GALLIUM_V3D
TARGET_LIB_DEPS += \
$(top_builddir)/src/broadcom/libbroadcom.la \
$(top_builddir)/src/broadcom/libbroadcom_v33.la \
$(top_builddir)/src/broadcom/libbroadcom_v41.la
endif
TARGET_LIB_DEPS += \
$(top_builddir)/src/gallium/winsys/vc4/drm/libvc4drm.la \
$(top_builddir)/src/gallium/drivers/vc4/libvc4.la \
$(top_builddir)/src/broadcom/cle/libbroadcom_cle.la
endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment