From 0585bc9cfbcb023ad10b57cbf52cc90623e6d307 Mon Sep 17 00:00:00 2001 From: Steffen Winter Date: Mon, 27 Nov 2023 00:31:10 +0100 Subject: [PATCH] Suppress all output from ROCm build Similar to including external include files with `-isystem`, ignore output from ROCm build since these warnings aren't a concern here --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 89c5a33a..f4496068 100644 --- a/Makefile +++ b/Makefile @@ -218,7 +218,8 @@ endif P := %% ifeq ($(VERBOSE),true) - override SUPPRESS := 1>/dev/null + # Doesn't work with `&>` + override SUPPRESS := > /dev/null 2> /dev/null else override SUPPRESS := endif