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
This commit is contained in:
Steffen Winter 2023-11-27 00:31:10 +01:00
parent 831be262b0
commit 0585bc9cfb

View file

@ -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