From 2e1220621c795b1f46c498ea9a9e8ac41a3fb7ac Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Wed, 1 Mar 2023 01:26:34 +0000 Subject: [PATCH] Use -pipe, supposedly this speeds things up. The codebase is getting kind of big, we'll need all the help we can get. --- tools/bin/td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/td b/tools/bin/td index 2b58be6..96981d4 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -25,7 +25,7 @@ : "${DEFINES:=-D_DEFAULT_SOURCE -DTELODENDRIA_VERSION=\"$TELODENDRIA_VERSION\"}" : "${CC:=cc}" -: "${CFLAGS:=-Wall -Wextra -pedantic -ansi -O3}" +: "${CFLAGS:=-Wall -Wextra -pedantic -ansi -O3 -pipe}" : "${STATIC:=-static -Wl,-static}" : "${LDFLAGS:=-lm -pthread -flto -fdata-sections -ffunction-sections -s -Wl,-gc-sections}" : "${PROG:=telodendria}"