From 12c51ae90e1f928420efd46565f5d505b2a3033a Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 20 Mar 2025 15:17:55 +0100 Subject: [PATCH] build: removing the debug flag to correction --- cpp05/ex00/Makefile | 4 ++-- cpp05/ex02/Makefile | 8 ++++---- cpp05/ex03/Makefile | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/cpp05/ex00/Makefile b/cpp05/ex00/Makefile index e9cced9..b17b165 100644 --- a/cpp05/ex00/Makefile +++ b/cpp05/ex00/Makefile @@ -24,8 +24,8 @@ CXXFLAGS = -Werror -Wextra -Wall -std=c++98 -I./includes/ # Flags to have the dependences (can be removed for correction) CXXFLAGS += -MMD # Flags to have the debug (can be removed for correction) -DEBUG += -g3 -fsanitize=address -CXXFLAGS += $(DEBUG) +# DEBUG += -g3 -fsanitize=address +# CXXFLAGS += $(DEBUG) # Sources SRC = Bureaucrat.cpp \ diff --git a/cpp05/ex02/Makefile b/cpp05/ex02/Makefile index 9eeed39..573008e 100644 --- a/cpp05/ex02/Makefile +++ b/cpp05/ex02/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/03/18 22:57:32 by rparodi ### ########.fr # +# Updated: 2025/03/20 15:17:19 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -25,9 +25,9 @@ CXXFLAGS = -Werror -Wextra -Wall -std=c++98 -I./includes/ # Flags to have the dependences (can be removed for correction) CXXFLAGS += -MMD # Flags to have the debug (can be removed for correction) -DEBUG = -g3 -DEBUG += -fsanitize=address -CXXFLAGS += $(DEBUG) +# DEBUG = -g3 +# DEBUG += -fsanitize=address +# CXXFLAGS += $(DEBUG) # Sources SRC = Bureaucrat.cpp \ diff --git a/cpp05/ex03/Makefile b/cpp05/ex03/Makefile index 6455820..9e6ec6a 100644 --- a/cpp05/ex03/Makefile +++ b/cpp05/ex03/Makefile @@ -6,7 +6,7 @@ # By: rparodi +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# # -# Updated: 2025/03/19 19:30:02 by rparodi ### ########.fr # +# Updated: 2025/03/20 15:17:36 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -25,9 +25,9 @@ CXXFLAGS = -Werror -Wextra -Wall -std=c++98 -I./includes/ # Flags to have the dependences (can be removed for correction) CXXFLAGS += -MMD # Flags to have the debug (can be removed for correction) -DEBUG = -g3 -DEBUG += -fsanitize=address -CXXFLAGS += $(DEBUG) +# DEBUG = -g3 +# DEBUG += -fsanitize=address +# CXXFLAGS += $(DEBUG) # Sources SRC = Bureaucrat.cpp \