summaryrefslogtreecommitdiff
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2018-07-29 19:11:53 -0700
committerEric Anholt <eric@anholt.net>2018-07-29 19:13:29 -0700
commit27f1bfe471d87783c2dd2be4cd3d0bbc1ae373cc (patch)
tree7a09f993d0ba4c586a325265aaa7b8e57eab8eee /src/gallium/drivers
parent05fb2f88ecf46809648230bcdd2c1563b317a188 (diff)
vc4: Fix meson build when enabled without v3d.
Reported-by: Rob Clark <robdclark@gmail.com> Fixes: e92959c4e03c ("v3d: Pass the whole clif_dump structure to v3d_print_group().")
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/vc4/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/meson.build b/src/gallium/drivers/vc4/meson.build
index ef7e7bcac5c..50adcc25f25 100644
--- a/src/gallium/drivers/vc4/meson.build
+++ b/src/gallium/drivers/vc4/meson.build
@@ -115,6 +115,6 @@ libvc4 = static_library(
driver_vc4 = declare_dependency(
compile_args : '-DGALLIUM_VC4',
- link_with : [libvc4, libvc4winsys, libbroadcom_cle],
+ link_with : [libvc4, libvc4winsys, libbroadcom_cle, libbroadcom_v3d],
dependencies : idep_nir,
)