Mesa (master): freedreno/afuc: Install asm/disasm

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Aug 18 16:27:31 UTC 2020


Module: Mesa
Branch: master
Commit: d145fcc1c1cd6dcf7b01b9b1b911041b4a29f9d8
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d145fcc1c1cd6dcf7b01b9b1b911041b4a29f9d8

Author: Connor Abbott <cwabbott0 at gmail.com>
Date:   Tue Aug 18 14:37:13 2020 +0200

freedreno/afuc: Install asm/disasm

Make the name a bit longer, since when installed it's not tucked away
under afuc/ anymore.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6368>

---

 src/freedreno/afuc/meson.build | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/freedreno/afuc/meson.build b/src/freedreno/afuc/meson.build
index 8a62a33d6b8..ccb258d45f8 100644
--- a/src/freedreno/afuc/meson.build
+++ b/src/freedreno/afuc/meson.build
@@ -37,7 +37,7 @@ afuc_lexer = custom_target(
 )
 
 asm = executable(
-  'asm',
+  'afuc-asm',
   [
     'asm.c',
     afuc_lexer,
@@ -51,11 +51,11 @@ asm = executable(
   ],
   dependencies: [],
   build_by_default : with_tools.contains('freedreno'),
-  install: false,
+  install: install_fd_decode_tools,
 )
 
 disasm = executable(
-  'disasm',
+  'afuc-disasm',
   'disasm.c',
   include_directories: [
     inc_freedreno_rnn,
@@ -65,5 +65,5 @@ disasm = executable(
   ],
   dependencies: [],
   build_by_default : with_tools.contains('freedreno'),
-  install: false
+  install: install_fd_decode_tools,
 )



More information about the mesa-commit mailing list