-
Notifications
You must be signed in to change notification settings - Fork 186
Description
Hello, I try to run the dllama on windows computer, but it comes to another problem as
PS D:\distributed-llama-main\distributed-llama-main> make dllama-api g++ -std=c++11 -Werror -Wformat -Werror=format-security -march=native -mtune=native -O3 -c src/nn/nn-network.cpp -o nn-network.o g++ -std=c++11 -Werror -Wformat -Werror=format-security -march=native -mtune=native -O3 src/dllama-api.cpp nn-quants.o nn-core.o nn-executor.o nn-network.o llamafile-sgemm.o nn-cpu-ops.o nn-cpu.o tokenizer.o llm.o app.o -o dllama-api -lws2_32 src/dllama-api.cpp: In function 'void server(AppInferenceContext*)': src/dllama-api.cpp:563:13: error: 'close' was not declared in this scope; did you mean 'fclose'? 563 | close(clientSocket); | ^~~~~ | fclose make: *** [Makefile:90: dllama-api] Error 1
I see that there is the similar problem, but I still meet the problem with the neweset code without the definition of close in "nn-network.cpp". Could you please help fix the problem? Thanks!