Removing unnecessary linker flags.

This commit is contained in:
HanClinto 2024-07-30 16:21:49 -04:00
parent 71606d5fbd
commit 22cd988062

View file

@ -1607,7 +1607,7 @@ llama-q8dot: pocs/vdot/q8dot.cpp ggml/src/ggml.o \
# Define the object file target
examples/deprecation-warning/deprecation-warning.o: examples/deprecation-warning/deprecation-warning.cpp
$(CXX) $(CXXFLAGS) -c $< -o $@ $(LDFLAGS)
$(CXX) $(CXXFLAGS) -c $< -o $@
# NOTE: We currently will always build the deprecation-warning `main` and `server` binaries to help users migrate.
# Eventually we will want to remove these target from building all the time.