aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-28 15:23:11 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-28 15:23:11 -0400
commit4de0fee8f694503b453e04084caaab55f8670b6c (patch)
tree6160ca034dfa299377ad3678e8c665a35de3e11a /Makefile
parentaaa89e3dc7b9e24e7c075522c56c3d770df790a4 (diff)
Default C compiler to `cc`
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 362b6660..a0731e03 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 \