panfrost: Remove unnecessary bifrost_compiler deps
authorAlyssa Rosenzweig <alyssa@collabora.com>
Wed, 21 Jul 2021 19:14:17 +0000 (15:14 -0400)
committerMarge Bot <eric+marge@anholt.net>
Thu, 22 Jul 2021 17:55:49 +0000 (17:55 +0000)
These dependencies are not necessarily portbale, but bifrost_compiler itself is.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12003>

src/panfrost/meson.build

index ae4ea71..cc919ca 100644 (file)
@@ -40,7 +40,7 @@ files_bifrost = files(
 
 bifrost_compiler = executable(
   'bifrost_compiler',
-  [files_bifrost, midgard_pack],
+  [files_bifrost],
   include_directories : [
     inc_mapi,
     inc_mesa,
@@ -60,9 +60,6 @@ bifrost_compiler = executable(
   link_with : [
     libglsl_standalone,
     libpanfrost_bifrost,
-    libpanfrost_decode,
-    libpanfrost_lib,
-    libpanfrost_midgard_disasm, # references disassemble_midgard...
   ],
   build_by_default : with_tools.contains('panfrost')
 )