From 6c1288d74159f5ea3f48707878b9930ebcc187af Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 19 May 2024 22:14:29 +0400 Subject: [PATCH] An extra - was removed from -std= CFLAGS option. This prevented compiling by tcc. Also added -flto to enable link time optimisation. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec8b48f..0846d55 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ DESTDIR ?= PREFIX ?= /usr/local CC ?= cc -CFLAGS := --std=c99 -O3 -Wall -Werror -Wextra -pedantic +CFLAGS := -std=c99 -O3 -Wall -Werror -Wextra -pedantic -flto .PHONY: clean install uninstall test