hard-code $(CC) to equal "cc"

this fixes the build on FreeBSD, where the value of $(CC) recently
changed from "cc" (13.2) to "c99" (14).

Signed-off-by: Lorenz (xha) <me@xha.li>
This commit is contained in:
Lorenz (xha) 2023-12-06 12:39:26 +01:00 committed by Quentin Carbonneaux
parent d023bdaa6b
commit 00501eeb6e

View file

@ -13,6 +13,7 @@ OBJ = $(COMMOBJ) $(AMD64OBJ) $(ARM64OBJ) $(RV64OBJ)
SRCALL = $(OBJ:.o=.c)
CC = cc
CFLAGS = -std=c99 -g -Wall -Wextra -Wpedantic
qbe: $(OBJ)