From 758c46cf7dcde20e534ce509a90fce498860fa97 Mon Sep 17 00:00:00 2001 From: xaedes Date: Fri, 22 Sep 2023 20:20:13 +0200 Subject: [PATCH] add export-lora build dependency to llama because it depends on common, which depends on llama --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b797d6e73..cc582df88 100644 --- a/Makefile +++ b/Makefile @@ -561,7 +561,7 @@ beam-search: examples/beam-search/beam-search.cpp build-info.h ggml.o llama.o co finetune: examples/finetune/finetune.cpp build-info.h ggml.o llama.o common.o train.o $(OBJS) $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS) -export-lora: examples/export-lora/export-lora.cpp build-info.h ggml.o common.o $(OBJS) +export-lora: examples/export-lora/export-lora.cpp build-info.h ggml.o llama.o common.o $(OBJS) $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS) speculative: examples/speculative/speculative.cpp build-info.h ggml.o llama.o common.o grammar-parser.o $(OBJS)