From 935f9db626bfc893e74114eedacd260c72f176a9 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Wed, 24 Aug 2022 11:22:56 -0400 Subject: [PATCH] Remove the redundant -ansi flag. It's identical to -std=c89, and not all compilers support it. --- tools/bin/td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/td b/tools/bin/td index 5f4a960..720b8e3 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -26,7 +26,7 @@ : "${INCLUDES:=-Isrc/include}" : "${CC:=cc}" -: "${CFLAGS:=-Wall -Wextra -pedantic -ansi -std=c89 -O3 $DEFINES $INCLUDES}" +: "${CFLAGS:=-Wall -Wextra -pedantic -std=c89 -O3 $DEFINES $INCLUDES}" : "${LDFLAGS:=-pthread -static -flto -fdata-sections -ffunction-sections -s -Wl,-static -Wl,-gc-sections}" : "${PROG:=telodendria}"