From 16d50d42daf09ac2f60ec009c2d2fe92c1fe7928 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 17 Mar 2026 21:00:43 +0000 Subject: util/nvmutil: default to clang on make-hell Signed-off-by: Leah Rowe --- util/nvmutil/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'util') diff --git a/util/nvmutil/Makefile b/util/nvmutil/Makefile index fa1d0b0c..6488ca43 100644 --- a/util/nvmutil/Makefile +++ b/util/nvmutil/Makefile @@ -3,6 +3,8 @@ # Copyright (c) 2023 Riku Viitanen CC?=cc +HELLCC?=clang + CFLAGS?= LDFLAGS?= DESTDIR?= @@ -36,7 +38,7 @@ strict: $(PROG).c # clang-only extreme warnings (not portable) hell: $(PROG).c - $(CC) $(HELLFLAGS) $(PROG).c -o $(PROG) $(LDFLAGS) + $(HELLCC) $(HELLFLAGS) $(PROG).c -o $(PROG) $(LDFLAGS) install: $(PROG) $(INSTALL) -d $(DESTDIR)$(PREFIX)/bin -- cgit v1.2.1