From 9f3f7d8085654d2f6493f31058c78c2eaff9f94d Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 11 Mar 2024 11:42:45 +0200 Subject: [PATCH] make : fix c++ compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4ed23bb7c..c8fd3f5c5 100644 --- a/Makefile +++ b/Makefile @@ -634,7 +634,7 @@ ggml-quants.o: ggml-quants.c ggml.h ggml-quants.h ggml-common.h $(CC) $(CFLAGS) -c $< -o $@ unicode.o: unicode.cpp unicode.h - $(CC) $(CXXFLAGS) -c $< -o $@ + $(CXX) $(CXXFLAGS) -c $< -o $@ OBJS += ggml-alloc.o ggml-backend.o ggml-quants.o unicode.o