We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1950c3 commit 698f7b5Copy full SHA for 698f7b5
Makefile
@@ -166,6 +166,8 @@ perplexity: examples/perplexity/perplexity.cpp ggml.o llama.o common.o
166
embedding: examples/embedding/embedding.cpp ggml.o llama.o common.o
167
$(CXX) $(CXXFLAGS) examples/embedding/embedding.cpp ggml.o llama.o common.o -o embedding $(LDFLAGS)
168
169
+libllama.so: llama.o ggml.o
170
+ $(CXX) $(CXXFLAGS) -shared -fPIC -o libllama.so llama.o ggml.o $(LDFLAGS)
171
#
172
# Tests
173
0 commit comments