From 4de0fee8f694503b453e04084caaab55f8670b6c Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 28 Mar 2025 15:23:11 -0400 Subject: [PATCH] Default C compiler to `cc` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 362b666..a0731e0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PREFIX=$(HOME)/.local VERSION=0.0.1 -CC=gcc +CC=cc CCONFIG=-std=c2x -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -I. \ -fno-signed-zeros -fno-finite-math-only -fno-signaling-nans -fno-trapping-math \ -fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden -fdollars-in-identifiers \