From e5fdbd54ff3fc8ac2a2ad9bdb9311ea4b6e3021b Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 21 Mar 2026 10:57:29 +0100 Subject: [PATCH] build: compilar pack_resources con C++20 para soporte de std::ranges Co-Authored-By: Claude Sonnet 4.6 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b5b6d29..d1b04dd 100644 --- a/Makefile +++ b/Makefile @@ -110,7 +110,7 @@ endif # Reglas para herramienta de empaquetado y resources.pack $(PACK_TOOL): $(PACK_SOURCES) @echo "Compilando herramienta de empaquetado..." - $(PACK_CXX) -std=c++17 -Wall -Os $(PACK_INCLUDES) $(PACK_SOURCES) -o $(PACK_TOOL) + $(PACK_CXX) -std=c++20 -Wall -Os $(PACK_INCLUDES) $(PACK_SOURCES) -o $(PACK_TOOL) @echo "✓ Herramienta de empaquetado lista: $(PACK_TOOL)" pack_tool: $(PACK_TOOL)