From 0cb7751066ae368b6d35e73f2fc6ff6bd73d1bfd Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 1 Apr 2022 23:25:21 +0200 Subject: [PATCH] Ajout de l'optimisation O3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 88879a4..8ff797d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CCPP = g++ -CFLAGS = -I. -Wall -Wextra -fanalyzer --std=c++17 +CFLAGS = -I. -Wall -Wextra -fanalyzer -O3 --std=c++17 CFLAGS2 = -Wno-unused-variable -Wno-unused-but-set-variable -Wno-unused-parameter SOURCES = $(shell find . -name '*.cpp')