diff options
author | Eric Anholt <[email protected]> | 2018-07-29 19:11:53 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-07-29 19:13:29 -0700 |
commit | 27f1bfe471d87783c2dd2be4cd3d0bbc1ae373cc (patch) | |
tree | 7a09f993d0ba4c586a325265aaa7b8e57eab8eee /src/gallium/drivers | |
parent | 05fb2f88ecf46809648230bcdd2c1563b317a188 (diff) |
vc4: Fix meson build when enabled without v3d.
Reported-by: Rob Clark <[email protected]>
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.build | 2 |
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, ) |