From 7a0b34349541043774e3ee60bccbd4063299989d Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Thu, 18 Jan 2024 11:04:28 +0100 Subject: [PATCH] aco: silent checking if clrxdisasm is available Otherwise, this is reported a ton of times and the CI output is unusable. Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/compiler/aco_print_asm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/compiler/aco_print_asm.cpp b/src/amd/compiler/aco_print_asm.cpp index 357466f902a..a3bf087c83f 100644 --- a/src/amd/compiler/aco_print_asm.cpp +++ b/src/amd/compiler/aco_print_asm.cpp @@ -412,7 +412,7 @@ check_print_asm_support(Program* program) #ifndef _WIN32 /* Check if CLRX disassembler binary is available and can disassemble the program */ return to_clrx_device_name(program->gfx_level, program->family) && - system("clrxdisasm --version") == 0; + system("clrxdisasm --version > /dev/null 2>&1") == 0; #else return false; #endif