From 69862a1e6eb63214e4b8d35d3ed2415d685a27fd Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sun, 1 Jan 2023 21:16:20 +0000 Subject: [PATCH] Use -ansi in compiler flags. I think this more well supported. --- tools/bin/td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/td b/tools/bin/td index 43cd83d..03559df 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -26,7 +26,7 @@ : "${INCLUDES:=-Isrc/include}" : "${CC:=cc}" -: "${CFLAGS:=-Wall -Wextra -pedantic -std=c89 -O3}" +: "${CFLAGS:=-Wall -Wextra -pedantic -ansi -O3}" : "${LDFLAGS:=-lm -pthread -static -flto -fdata-sections -ffunction-sections -s -Wl,-static -Wl,-gc-sections}" : "${PROG:=telodendria}"