From 44509023dccea7aa6f47e1bb78f1306040f77550 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 21 Mar 2026 11:04:44 +0100 Subject: [PATCH] build: compilar pack_resources con C++20 en tools/Makefile Co-Authored-By: Claude Sonnet 4.6 --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 6481055..23ee380 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -14,7 +14,7 @@ PACK_INCLUDES := -I$(DIR_ROOT) # Compilador y flags CXX := g++ -CXXFLAGS := -std=c++17 -Wall -Os -ffunction-sections -fdata-sections +CXXFLAGS := -std=c++20 -Wall -Os -ffunction-sections -fdata-sections # Variables específicas por sistema operativo ifeq ($(OS),Windows_NT)