switched to arm-linux-gnueabi-g++ and static build to cross compile for armv7

This commit is contained in:
2025-08-31 06:50:41 +00:00
parent 1c3478fdb5
commit a49f24a93c

View File

@@ -5,9 +5,9 @@ SRC = main.cpp ./Srcs/Server.cpp ./Srcs/Client.cpp ./Srcs/Channel.cpp ./Srcs/Aut
OBJ = ${SRC:.cpp=.o} 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) all : $(NAME)