From 28bfda390e97e55921eda091cf2f241efcbe91db Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 25 Dec 2025 02:16:43 +0100 Subject: [PATCH] build(make): removing the lld flags --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0debbc4..cbde13f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: sben-tay +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2025/05/02 15:40:00 by rparodi #+# #+# # -# Updated: 2025/06/24 14:49:42 by sben-tay ### ########.fr # +# Updated: 2025/09/01 16:22:45 by rparodi ### ########.fr # # # # **************************************************************************** # @@ -93,7 +93,7 @@ re: header fclean all $(NAME): $(OBJ) @mkdir -p $(OBJDIRNAME) @printf '$(GREY) Creating $(END)$(GREEN)$(OBJDIRNAME)$(END)\n' - @$(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $(NAME) $(OBJ) #-fuse-ld=lld + @$(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $(NAME) $(OBJ) # Creating the objects $(OBJDIRNAME)/%.o: %.cpp