From a49f24a93c367b4dff822c749ae39e2f9bba4687 Mon Sep 17 00:00:00 2001 From: smallsolar Date: Sun, 31 Aug 2025 06:50:41 +0000 Subject: [PATCH] switched to arm-linux-gnueabi-g++ and static build to cross compile for armv7 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e0b3f8b..d53bcd6 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,9 @@ SRC = main.cpp ./Srcs/Server.cpp ./Srcs/Client.cpp ./Srcs/Channel.cpp ./Srcs/Aut OBJ = ${SRC:.cpp=.o} -CXX = c++ +CXX = arm-linux-gnueabi-g++ -CXXFLAGS = -std=c++98 -Wall -Wextra -Werror -I ./Includes +CXXFLAGS = -static -std=c++98 -Wall -Wextra -Werror -I ./Includes all : $(NAME)