Skip to content

Commit

Permalink
Suppress all output from ROCm build
Browse files Browse the repository at this point in the history
Similar to including external include files with `-isystem`, ignore
output from ROCm build since these warnings aren't a concern here
  • Loading branch information
imwints committed Nov 27, 2023
1 parent 831be26 commit 0585bc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0585bc9

Please sign in to comment.