From e4a41d447b954446aeb63d160b68260d0493eb51 Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 7 Jan 2026 22:10:33 -0500 Subject: [PATCH] Do not compile tools with LTO Some older systems do not support LTO, and it's unnecessary for these simple single-file tools --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 33381761..69a1af05 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,7 +1,7 @@ .PHONY: all clean CC := gcc -CFLAGS := -O3 -flto -std=c11 -Wall -Wextra -pedantic +CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic tools := \ gbcpal \